반응형
<코드>
import java.util.Scanner;
public class Main {
public static void main(String[] args){
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
String s = sc.nextLine();
for (int i = 0; i < N; i++) {
int score = 0;
int tmp = 1;
s = sc.nextLine();
for (int j = 0; j < s.length(); j++) {
if(s.charAt(j)== 'O') {
score += tmp;
tmp++;
}
else {
tmp = 1;
}
}
System.out.println(score);
}
}
}
반응형
'🧩PS > 🥉Easy' 카테고리의 다른 글
[C++/JAVA] 백준 15596번 - 정수 N개의 합 (0) | 2021.09.30 |
---|---|
[JAVA] 백준 4344번 - 평균은 넘겠지 (0) | 2021.09.17 |
[JAVA] 백준 1546번 - 평균 (0) | 2021.09.17 |
[JAVA] 백준 3052번 - 나머지 (0) | 2021.09.17 |
[JAVA] 백준 2577번 - 숫자의 개수 (0) | 2021.09.17 |