BackJoon Algorithm 8958 OX퀴즈 (Java)

업데이트:
최대 1 분 소요

BackJoon Algorithm - Java

alt

문제

alt

풀이

  • String 타입으로 문자열을 받고 받음과 동시에 for문으로 문자하나씩 비교해본다.
  • 맨처음 charAt(0)이 ‘O’이면 합과 카운트를 1씩 증가시켜서 시작하는 if문을 둔다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Back_8958 {
    public static void main(String[] args) throws IOException {

        // given
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringBuffer sb = new StringBuffer();
        int total = Integer.parseInt(br.readLine());
        // when
        for (int i = 0; i < total; i++) {
            String str = br.readLine();
            int count = 0;
            int sum = 0;
            if (str.charAt(0) == 'O') {
                count = 1;
                sum = 1;
            }
            for (int j = 1; j < str.length(); j++) {
                if (str.charAt(j) == 'O') {
                    count++;
                    sum += count;
                } else {
                    count = 0;

                }
            }
            sb.append(sum).append("\n");
        }
        // then
        System.out.println(sb);
        br.close();
    }
}

댓글남기기