白駿-136:組合せ語checker[java]

6299 ワード

import java.io.*;

public class Main {
	public static void main(String[] args) throws NumberFormatException, IOException {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

		int N = Integer.parseInt(br.readLine());
		int count = 0;

		next: for (int test_case = 0; test_case < N; test_case++) {
			String str = br.readLine();
			String temp = "";
			for (int i = 0; i < str.length(); i++) {
				char c = str.charAt(i);

				// 이미 존재하면
				if (temp.contains(c + "")) {
					if (temp.charAt(temp.length() - 1) == c) temp += c; // 직전과 같으면 계속
					else continue next; // 직전과 다르면 그룹 단어 아님
				} else temp += c;
			}
			count++;
		}
		System.out.println(count);
	}
}