336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
백준알고리즘
https://www.acmicpc.net/problem/8958
import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner scan = new Scanner(System.in); int count = Integer.parseInt(scan.nextLine().trim()); for(int i=0; i<count; i++) { int point = 0; int result = 0; String inputStr = scan.nextLine().trim(); for(int index=0; index<inputStr.length(); index++) { char data = inputStr.charAt(index); if('O' == data) { result += ++point; } else { point = 0; } } System.out.println(result); } scan.close(); }
}
'알고리즘 및 자료구조 > 문제' 카테고리의 다른 글
백준알고리즘 13235번 팰린드롬 (0) | 2018.05.02 |
---|---|
백준알고리즘 3047번 ABC (2) | 2018.05.02 |
백준알고리즘 2577번 숫자의 개수 (0) | 2018.05.02 |
백준알고리즘 15667번 2018 연세대학교 프로그램 (0) | 2018.05.01 |
백준알고리즘 1475번 방 번호 (0) | 2018.05.01 |