-Code
from math import ceil
n, t = map(int, input().split())
m = int(input())
x, y = map(int, input().split())
out_time = m / (60 * x)
in_time = (n - m) / (60 * y)
res = max(out_time + in_time - t, 0)
print(ceil(res))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 12085번 Moist (Small1) (0) | 2024.07.12 |
---|---|
[백준/파이썬] 14969번 Taro's Shopping (0) | 2024.07.11 |
[백준/파이썬] 26122번 가장 긴 막대 자석 (0) | 2024.07.09 |
[백준/파이썬] 24198번 Muffinspelet (0) | 2024.07.08 |
[백준/파이썬] 27475번 Cancel the Trains (0) | 2024.07.07 |