[C언어/C++] 1316: 그룹 단어 체커-2

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <iostream>
 
using namespace std;
 
string word;
int c = 0;
 
void lengthcheck() {
 
    cin >> word;
 
    int size = word.length();
    bool check = true;
 
    for (int j = 0; j < size; j++) {
 
        for (int k = 0; k < j; k++) {
 
            if (word[j] != word[j  1&& word[j] == word[k]) {
                
                check = false;
 
                break;
            }
 
        }
 
    }
 
    if (check) c++;
 
}
 
 
int main() {
 
    int N;
 
    cin >> N;
 
    for (int i = 0; i < N; i++) {
 
        lengthcheck();
 
    }
 
    cout << c;
 
    return 0;
}
cs

관련글

제목 작성자 작성일