Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 타코트론
- 학습
- 보코더
- 음성 합성
- text-to-speech
- 딥러닝
- 노래합성
- melgan
- 한국어 음성 합성
- DCTTS
- 트레이닝
- waveglow
- 한국어 tts
- you only look once
- 딥러닝 보코더
- deep voice
- 윈도우
- YOLO
- singing voice synthesis
- tacotron
- korean tts
- Vocoder
- 딥러닝 음성 합성
- TTS
Archives
- Today
- Total
chldkato
백준 2231 분해합 (파이썬) 본문
https://www.acmicpc.net/problem/2231
n = int(input())
ans = 1000001
for i in range(1, n):
k = i
for j in list(str(i)):
k += int(j)
if k == n:
ans = min(ans, i)
if ans == 1000001:
print(0)
else:
print(ans)
'백준' 카테고리의 다른 글
백준 5397 키로거 (파이썬) (0) | 2020.02.27 |
---|---|
백준 5532 방학 숙제 (파이썬) (0) | 2020.02.27 |
백준 2798 블랙잭 (파이썬) (0) | 2020.02.27 |
백준 2869 달팽이는 올라가고 싶다 (파이썬) (0) | 2020.02.27 |
백준 11724 연결 요소의 개수 (파이썬) (0) | 2020.02.27 |
Comments