https://www.acmicpc.net/problem/2231
n = int(input())
for i in range(1, n+1):
res = i
for j in range(0, len(str(i))):
res += int(str(i)[j])
if res == n:
print(i)
break
if i == n:
print(0)
'알고리즘 > 백준' 카테고리의 다른 글
백준 1018: 체스판 다시 칠하기 (Python) (0) | 2021.09.09 |
---|---|
백준 7568: 덩치 (Python) (0) | 2021.09.08 |
백준 2798: 블랙잭 (Python) (0) | 2021.09.08 |
백준 11729: 하노이 탑 이동 순서 (Python) (0) | 2021.09.08 |
백준 2447: 별 찍기 - 10 (Python) (0) | 2021.09.08 |