728x90
https://www.acmicpc.net/problem/1316
리스트에 단어들을 넣으면서 비교했다.
연속됐는지. 여부를 alpha_list 의 마지막 인덱스값의 문자를 같이 비교하며 검증했다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
import sys
input = sys.stdin.readline
cnt = 0
n = int(input())
for i in range(n):
voca = input()
alpha_list = []
result = True
for v in voca:
if v in alpha_list and alpha_list[-1] != v:
result = False
break
else:
alpha_list.append(v)
if result:
cnt += 1
print(cnt)
|
cs |
728x90
'PS > 백준' 카테고리의 다른 글
[백준 1011번 ] Fly me to the Alpha Centauri (파이썬/python) (0) | 2021.06.14 |
---|---|
[백준 2839번 ] 설탕 배달 (파이썬/python) (0) | 2021.06.14 |
[백준 2941번 ] 크로아티아 알파벳 (파이썬/python) (0) | 2021.06.14 |
[백준 1157번 ] 단어 공부 (파이썬/python) (0) | 2021.06.14 |
[백준 4673번 ] 셀프 넘버 (파이썬/python) (0) | 2021.06.14 |