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))))
math 모듈에 있는 ceil함수를 사용했다.
ceil함수는 강제 올림 해준다.
'STUDY > Python' 카테고리의 다른 글
[백준] 11943번 파일 옮기기 파이썬 코드 (0) | 2020.10.10 |
---|---|
[백준] 10707번 수도요금 풀이 파이썬 (0) | 2020.10.10 |
[백준] 10162번 전자레인지 파이썬 (0) | 2020.10.08 |
[백준] 5596번 시험 점수 파이썬 (0) | 2020.10.08 |
[백준] 10101번 삼각형 외우기 파이썬 (0) | 2020.10.08 |
댓글