https://www.acmicpc.net/problem/2941
#Solution
croatian_word = str(input())
croatian_reference = ["c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z="]
for word in croatian_reference:
croatian_word = croatian_word.replace(word, "0")
print(len(croatian_word))
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#48 백준 파이썬 [1193] 분수찾기 (0) | 2019.03.12 |
---|---|
#47 백준 파이썬 [2292] 벌집 (0) | 2019.03.12 |
#45 백준 파이썬 [5622] 다이얼 (0) | 2019.02.27 |
#44 백준 파이썬 [2908] 상수 (0) | 2019.02.27 |
#43 백준 파이썬 [1316] 그룹 단어 체커 (0) | 2019.02.27 |