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 |
Tags
- CustomTab
- posting
- jlpt
- rxjava
- androidstudio
- pullrequest
- PR
- github
- 코틀린
- coroutine
- 일본어문법
- Android
- 진짜학습지후기
- n3문법
- 인공지능
- Kotlin
- 진짜일본어
- errorhandling
- 학습지
- GIT
- webflux
- 안드로이드
- 책리뷰
- suspend
- ai
- 일본어기초
- KotlinInAction
- blog
- 진짜학습지
- 책추천
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