https://www.acmicpc.net/problem/1316
N = int(input())
cnt = N
for i in range(N):
word = input()
for j in range(0, len(word)-1):
if word[j] == word[j+1]:
pass
elif word[j] in word[j+1:]:
cnt -= 1
break
print(cnt)
같은 알파벳이 연속되지 않은 경우 (이후에 있는 경우) cnt값을 1씩 지워줍니다.