반응형
문제 정보
제출 코드
word = input()
croatia_list = ["c=","c-","dz=","d-","lj","nj","s=","z="]
total = 0
for croatia in croatia_list:
total += word.count(croatia)
word = word.replace(croatia, " ")
total+=len(word.replace(" ",""))
print(total)
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 1978번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 1316번 Python (0) | 2021.10.04 |
[백준 알고리즘] 5622번 Python (0) | 2021.10.04 |
[백준 알고리즘] 2908번 Python (0) | 2021.10.04 |
[백준 알고리즘] 1152번 Python (0) | 2021.10.04 |
댓글