어제보다 더 나은 나

백준_1316번_그룹단어체커 본문

코딩테스트/문제풀이

백준_1316번_그룹단어체커

확인해볼까 2022. 5. 13. 17:42
n = int(input())

a = list()

for i in range(n):
    word = input()
    a.append(word)

non_sequence = 0
non_word = 0

for i in range(n):
    non_sequence = 0

    word_length = len(a[i])
    for j in range(word_length):

        temp = a[i][j]
        temp_i = j

        for k in range(j+1, word_length):
            if a[i][k] == temp and k - temp_i == 1:
                temp_i = k
            elif a[i][k] == temp and temp_i - k != 1:
                non_sequence = non_sequence + 1
                break

    if non_sequence >= 1 :
        non_word = non_word + 1

print(n - non_word)

'코딩테스트 > 문제풀이' 카테고리의 다른 글

백준_11650번_좌표정렬하기  (0) 2022.07.11
백준_9324번_진짜메시지  (0) 2022.07.11
백준_1075번_나누기  (0) 2022.05.12
구름LEVEL_화학물질  (0) 2022.05.10
구름LEVEL_파도 센서(별1개)_답  (0) 2022.05.06
Comments