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 | 31 |
Tags
- you only look once
- singing voice synthesis
- TTS
- tacotron
- 한국어 음성 합성
- 윈도우
- 딥러닝
- text-to-speech
- deep voice
- 보코더
- 음성 합성
- 딥러닝 보코더
- 딥러닝 음성 합성
- YOLO
- 트레이닝
- melgan
- DCTTS
- korean tts
- 타코트론
- Vocoder
- waveglow
- 노래합성
- 학습
- 한국어 tts
Archives
- Today
- Total
chldkato
백준 10448 유레카 이론 (파이썬) 본문
https://www.acmicpc.net/problem/10448
1. 삼각수를 미리 다 구하여 a에 저장한다
2. 중복조합으로 삼각수 3개를 정하고 입력받은 n과 일치하는지 확인한다
3. 일치하면 1을 리턴하고 출력한다. 모든 경우를 고려해도 일치하지 않으면 0을 출력한다
import sys
input = sys.stdin.readline
def f(cnt):
if cnt == 3:
res = 0
for i in range(len(a)):
if select[i] > 0:
res += a[i] * select[i]
if res == n:
return 1
else:
return 0
for i in range(len(a)):
select[i] += 1
if f(cnt+1) == 1:
return 1
select[i] -= 1
a, i = [], 0
while True:
i += 1
ni = i * (i+1) // 2
if ni >= 1000:
break
a.append(ni)
tc = int(input())
for _ in range(tc):
n = int(input())
select = [0 for _ in range(len(a))]
if f(0) == 1:
print(1)
else:
print(0)
'백준' 카테고리의 다른 글
백준 19236 청소년 상어 (파이썬) (0) | 2020.06.08 |
---|---|
백준 1654 랜선 자르기 (파이썬) (0) | 2020.06.05 |
백준 1748 수 이어 쓰기 1 (파이썬) (0) | 2020.06.05 |
백준 1107 리모컨 (파이썬) (2) | 2020.06.04 |
백준 1182 부분수열의 합 (파이썬) (0) | 2020.04.27 |
Comments