[백준/파이썬] 1316번

민정·2023년 2월 15일
0

[백준/파이썬]

목록 보기
96/245
post-thumbnail

백준 1316번

문제

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씩 지워줍니다.

profile
パㅔバ6ㅇr 덤벼ㄹΓ :-0

0개의 댓글