문제 출처: https://www.acmicpc.net/problem/8958
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 | import java.io.BufferedReader; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws Exception { BufferedReader reader = new BufferedReader(new InputStreamReader(System.in)); int N = Integer.parseInt(reader.readLine()); String[] arr = new String[N]; for(int i=0 ; i<N ; i++){ arr[i] = reader.readLine(); int count = 0, result = 0; for(int j=0 ; j<arr[i].length() ; j++){ if(arr[i].charAt(j) == 'O') result += ++count; else count = 0; } arr[i] = String.valueOf(result); } for(int i=0 ; i<N ; i++) System.out.println(arr[i]); } } | cs |
'Algorithm' 카테고리의 다른 글
백준 10039번: 평균 점수 (0) | 2018.10.15 |
---|---|
백준 2920번: 음계 (0) | 2018.10.15 |
백준 2577번: 숫자의 개수 (0) | 2018.10.15 |
백준 1152번: 단어의 개수 (0) | 2018.10.15 |
백준 2448번: 별찍기-11 (0) | 2018.10.04 |