250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Bfs와DFS
- 완전탐색
- 정보처리기사
- 자바
- 순열
- 알고리즘
- 재귀함수
- D드라이브생성
- java
- 삼성역테
- BFS
- 전화번호속의암호
- 볼륨 만들기
- 백준15652
- 코테준비
- 에라토스테네스의채
- 백준
- 중복순열
- 주사위굴리기2
- N과M
- 백준13458
- 정올 1620
- 코테
- 23288
- 자바 코테
- 파티션 크기 조정
- 중복조합
- 완탐
- 알고리즘개념
- 백준2251
Archives
- Today
- Total
목록8958 (1)
뚱땅뚱땅
[문제] 백준 8958번 OX 퀴즈
* 단계별로 풀어보기: 1차원 배열 import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); String score[] = new String[n]; for (int i = 0; i < n; i++) { score[i] = sc.next(); } for (int i = 0; i < n; i++) { int len = score[i].length(); int sum = 0; for (int j = 0; j < len; j++) { if (score[i].charAt(j) == 'O') { int k = j..
알고리즘/백준
2021. 1. 19. 17:11