티스토리 뷰
https://www.acmicpc.net/problem/2231
import sys
N = int(sys.stdin.readline())
for i in range(1, N+1):
if N == i + sum(list(map(int, str(i)))):
print(i)
break
if i == N:
print(0)
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 15486 : 퇴사 2 - Python (0) | 2020.03.14 |
---|---|
[백준] 6378 : 디지털 루트 - Python (0) | 2020.03.14 |
[백준] 2798 : 블랙잭 - Python (0) | 2020.03.13 |
[백준] 1149 : RGB거리 - Python (0) | 2020.03.12 |
[백준] 1110 : 더하기 사이클 - Python (0) | 2020.03.12 |