白駿-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);
}
}
Reference
この問題について(白駿-136:組合せ語checker[java]), 我々は、より多くの情報をここで見つけました https://velog.io/@heoeunah/백준-1316-그룹-단어-체커-자바テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol