본문 바로가기
python-algorithm

[백준] 2231

by 무적김두칠 2021. 1. 7.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
def bunhaehap(n):
    num=list(map(intstr(n)))
    ans=n+sum(num)
    return ans
n=int (input())
 
cnt=0
while bunhaehap(cnt)!=n:
    if cnt==n:
        cnt=0
        break
    else:
        cnt+=1
print(cnt)
cs
반응형

'python-algorithm' 카테고리의 다른 글

[백준] 2309  (0) 2021.01.07
[백준] 2292  (0) 2021.01.07
[백준] 2153  (0) 2021.01.07
[백준] 2037  (0) 2021.01.06
[백준] 2028  (0) 2021.01.06

댓글