https://www.acmicpc.net/problem/2941
s = input()
alphabet = ["c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z="]
for i in alphabet:
s = s.replace(i, "a")
print(len(s))
'알고리즘 > 백준' 카테고리의 다른 글
백준 1712: 손익분기점 (Python) (0) | 2021.08.26 |
---|---|
백준 1316: 그룹 단어 체커 (Python) (0) | 2021.08.25 |
백준 2908: 상수 (Python) (0) | 2021.08.25 |
백준 1157: 단어 공부 (Python) (0) | 2021.08.25 |
백준 2675: 문자열 반복 (Python) (0) | 2021.08.25 |