Notice
Recent Posts
Recent Comments
Link
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 일본어기초
- webflux
- n3문법
- jlpt
- posting
- suspend
- github
- 책추천
- Android
- ai
- 일본어문법
- 학습지
- 진짜학습지
- Kotlin
- errorhandling
- rxjava
- GIT
- blog
- androidstudio
- CustomTab
- 진짜일본어
- KotlinInAction
- 코틀린
- pullrequest
- 안드로이드
- PR
- 진짜학습지후기
- coroutine
- 인공지능
- 책리뷰
Archives
코딩하는 개굴이
BaekJoon/BOJ [JAVA] OX 퀴즈_8958 본문
반응형
BaekJoon/BOJ [JAVA] OX 퀴즈_8958
HINT: 다시 한번 깨달은 클린코드의 중요성....바보같지만 중첩 for문의 변수를 둘다 i를 써놨었다....
import java.util.Scanner;
import java.util.Vector;
public class baekjoon_8958 {
public static void main(String[] argc) {
Scanner scanner = new Scanner(System.in);
Vector<Integer> result = new Vector<>();
int iter = Integer.parseInt(scanner.nextLine());
for(int i = 0; i < iter; i++) {
String input = scanner.nextLine();
int count=0, score=0;
// System.out.print("*"+input+"*");
for(int j=0;j<input.length();j++) {
// System.out.print("["+input.charAt(j)+"]");
if(input.charAt(j)=='O') { count++; }
else { count=0; }
// System.out.print("count: "+count+"-i: "+j+"/");
score+=count;
}
result.add(score);
// System.out.println();
}
for(int i=0;i<result.size();i++) System.out.println(result.elementAt(i));
}
}
반응형
'알고리즘 > Baekjoon' 카테고리의 다른 글
BaekJoon/BOJ [JAVA] 알파벳 찾기_10809 (0) | 2019.01.06 |
---|---|
BaekJoon/BOJ [JAVA] 평균 점수_10039 (0) | 2019.01.06 |
BaekJoon/BOJ [JAVA] 단어의 개수_1152 (0) | 2019.01.03 |
BaekJoon/BOJ [JAVA] 한수_1065 (0) | 2019.01.03 |
BaekJoon/BOJ [JAVA] 셀프 넘버_4673 (0) | 2019.01.03 |
Comments