Introfor

[백준] 2941번 크로아티아 알파벳 본문

Programming_prob/BaekJoon

[백준] 2941번 크로아티아 알파벳

YongArtist 2020. 10. 7. 08:58

1일 1코딩

1
2
3
4
5
6
7
8
9
10
def solution():
    croatia_alpha = ['c=''c-''dz=''d-''lj''nj''s=''z=']
    string = input()
    for i in croatia_alpha:
        string = string.replace(i, '0')
    return len(string)
 
 
res = solution()
print(res)
cs

'Programming_prob > BaekJoon' 카테고리의 다른 글

[백준] 1712번 손익분기점  (0) 2020.10.08
[백준] 1316번 그룹 단어 체커  (0) 2020.10.07
[백준] 2908번 상수  (0) 2020.10.06
[백준] 1152번 단어의 개수  (0) 2020.10.06
[백준] 1157번 단어 공부  (0) 2020.10.06
Comments