https://www.acmicpc.net/problem/5532
Python Code
import math
L = int(input())
A = int(input())
B = int(input())
C = int(input())
D = int(input())
print(L - max(math.ceil(A/C), math.ceil(B/D)))
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#236 백준 파이썬 [10797] 10부제 (0) | 2019.12.01 |
---|---|
#235 백준 파이썬 [17826] 나의 학점은? (0) | 2019.12.01 |
#233 백준 파이썬 [11656] 접미사 배열 (0) | 2019.12.01 |
#232 백준 파이썬 [1094] 막대기 (0) | 2019.12.01 |
#231 백준 파이썬 [10833] 사과 (0) | 2019.12.01 |