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
- waveglow
- 딥러닝
- 음성 합성
- 딥러닝 보코더
- 타코트론
- DCTTS
- tacotron
- 보코더
- 학습
- 한국어 tts
- 트레이닝
- text-to-speech
- deep voice
- you only look once
- 노래합성
- 한국어 음성 합성
- Vocoder
- 윈도우
- 딥러닝 음성 합성
- singing voice synthesis
- TTS
- melgan
- korean tts
- YOLO
Archives
- Today
- Total
chldkato
백준 5532 방학 숙제 (파이썬) 본문
https://www.acmicpc.net/problem/5532
l = int(input())
a = int(input())
b = int(input())
c = int(input())
d = int(input())
e = a // c
f = b // d
if e > f:
if a % c == 0:
print(l - e)
else:
print(l - 1 - e)
else:
if b % d == 0:
print(l - f)
else:
print(l - 1 - f)
'백준' 카테고리의 다른 글
백준 2161 카드1 (파이썬) (0) | 2020.02.27 |
---|---|
백준 5397 키로거 (파이썬) (0) | 2020.02.27 |
백준 2231 분해합 (파이썬) (0) | 2020.02.27 |
백준 2798 블랙잭 (파이썬) (0) | 2020.02.27 |
백준 2869 달팽이는 올라가고 싶다 (파이썬) (0) | 2020.02.27 |
Comments