SMALL
문제출처
풀이코드
word=input()
alphas=['c=','c-','dz=','d-','lj','nj','s=','z=']
cnt=0
for alpha in alphas:
if alpha in word:
cnt+=word.count(alpha)
answer = len(word)-cnt*2+cnt
print(answer)
LIST
'알고리즘-python > 백준 문제' 카테고리의 다른 글
[백준/1712/파이썬(Python3)] 손익분기점 (0) | 2021.07.07 |
---|---|
[백준/1316/파이썬(Python3)] 그룹 단어 체커 (0) | 2021.07.06 |
[백준/5622/파이썬(Python3)] 다이얼 (0) | 2021.07.02 |
[백준/2675/파이썬(Python3)] 문자열 반복 (0) | 2021.07.02 |
[백준/10809/파이썬(Python3)] 알파벳 찾기 (0) | 2021.07.01 |