Posts [알고리즘] 백준 1284 - 집 주소
Post
Cancel

[알고리즘] 백준 1284 - 집 주소


문제

1284 - 집 주소


접근

1, 0 인 경우만 따로 처리해주면 된다.


코드

  • 파이썬 코드
1
2
3
4
5
6
7
8
9
10
11
12
13
while True:
    num = list(map(int, list(input())))
    if len(num) == 1 and num[0] == 0:
        break
    ans = 1 + len(num)
    for item in num:
        if item == 1:
            ans += 2
        elif item == 0:
            ans += 4
        else:
            ans += 3
    print(ans)


This post is licensed under CC BY 4.0 by the author.