[BAEKJOON] #8958 (Java)

Inwook Baek ·2021년 9월 30일
0

Algorithm Study

목록 보기
29/38
post-thumbnail

Problem Link

Problem:
"OOXXOXXOOO"와 같은 OX퀴즈의 결과가 있다. O는 문제를 맞은 것이고, X는 문제를 틀린 것이다. 문제를 맞은 경우 그 문제의 점수는 그 문제까지 연속된 O의 개수가 된다. 예를 들어, 10번 문제의 점수는 3이 된다.
"OOXXOXXOOO"의 점수는 1+2+0+0+1+0+0+1+2+3 = 10점이다.
OX퀴즈의 결과가 주어졌을 때, 점수를 구하는 프로그램을 작성하시오.

첫째 줄에 테스트 케이스의 개수가 주어진다. 각 테스트 케이스는 한 줄로 이루어져 있고, 길이가 0보다 크고 80보다 작은 문자열이 주어진다. 문자열은 O와 X만으로 이루어져 있다.

각 테스트 케이스마다 점수를 출력한다.

My Code:

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;

public class BaekJoon_8958 {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringBuilder sb = new StringBuilder();

        // Get test case from an input 
        int testCase = Integer.parseInt(br.readLine());
        // Create array with testCase number 
        String arr[] = new String[testCase];

        // Given an input lines, put each lines according to i index 
        for (int i = 0; i < testCase; i++) {
            arr[i] = br.readLine();
        }

        for (int i = 0; i < testCase; i++) {

            // count of number of consecutive 0
            int count = 0;
            // sum of point given for number of consecutive 0 
            int sum = 0;

            // for each lines within array 
            for (int j = 0; j < arr[i].length(); j++) {
                
                // get each characters from a line and compare it to O
                if (arr[i].charAt(j) == 'O') {
                    count++;
                } else {
                    // reset to 0 if a given character is not 0 to start over the point system
                    count = 0;
                }
                sum += count;
            }
            sb.append(sum).append('\n');
        }
        System.out.print(sb);
    }
}

Input

5
OOXXOXXOOO
OOXXOOXXOO
OXOXOXOXOXOXOX
OOOOOOOOOO
OOOOXOOOOXOOOOX

Output

10
9
7
55
30

0개의 댓글