[백준]B3-1284

py_code·2020년 12월 3일
0

백준-브론즈3

목록 보기
12/38
post-custom-banner

D = {'0':4, '1':2}
while True:
  a = input()
  l = 2 + len(a) - 1
  if a!='0':
    for i in range(len(a)):
      if a[i] in D.keys() : l += D[a[i]] # 0,1이면 dictionary에서 참조
      else : l += 3
    print(l)
  else : break
profile
개발자를 꿈꿉니다.

0개의 댓글