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
- 타코트론
- 트레이닝
- tacotron
- 보코더
- deep voice
- 윈도우
- melgan
- 딥러닝
- 딥러닝 음성 합성
- text-to-speech
- 한국어 tts
- 딥러닝 보코더
- 노래합성
- 한국어 음성 합성
- 음성 합성
- DCTTS
- YOLO
- 학습
- singing voice synthesis
- korean tts
- Vocoder
- TTS
- waveglow
- you only look once
Archives
- Today
- Total
chldkato
백준 1912 연속합 (파이썬) 본문
https://www.acmicpc.net/problem/1912
n-1번째 연속합에 현재 값을 더한 것과 현재 값 둘 중에 큰 값이 현재의 연속합이다
import sys
input = sys.stdin.readline
n = int(input())
a = list(map(int, input().split()))
d = [[] for _ in range(n)]
d[0] = a[0]
for i in range(1, n):
d[i] = max(a[i], d[i-1] + a[i])
print(max(d))
'백준' 카테고리의 다른 글
백준 17142 연구소 3 (파이썬) (0) | 2020.03.03 |
---|---|
백준 17144 미세먼지 안녕! (파이썬) (0) | 2020.03.03 |
백준 2193 이친수 (파이썬) (0) | 2020.03.03 |
백준 2133 타일 채우기 (파이썬) (0) | 2020.03.03 |
백준 1793 타일링 (파이썬) (0) | 2020.03.03 |
Comments