728x90
반응형
단순 구현 문제이다.
while 1:
N = input()
if N == '0':
break
res = len(N)+1
for n in N:
if n == '0':
res += 4
elif n == '1':
res += 2
else:
res += 3
print(res)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 1547번 공(python) (0) | 2021.02.10 |
---|---|
백준 알고리즘 1333번 부재중 전화(python) (0) | 2021.02.10 |
백준 알고리즘 1267번 핸드폰 요금(python) (0) | 2021.02.10 |
백준 알고리즘 1247번 부호(python) (0) | 2021.02.10 |
백준 알고리즘 20673번 Covid-19(python) (0) | 2021.02.10 |