문제:
입력:
출력:
풀이 방법:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | answer=int(input()) count=1 while(True): temp=count for i in str(count): temp+=int(i) if temp==answer: break elif count>answer: count=0 break else: count+=1 print(count) | cs |
'Algorithm > Python' 카테고리의 다른 글
[BOJ]2293. 동전1 (0) | 2019.05.20 |
---|---|
[BOJ]7568. 덩치 (0) | 2019.05.19 |
[BOJ]2309. 일곱 난쟁이 (0) | 2019.05.17 |
[BOJ]1015. 수열 정렬 (0) | 2019.05.16 |
[BOJ]1547. 공 (0) | 2019.05.15 |