본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 28940번 Дневник Гравити Фолз

by 현장 2024. 2. 19.

-Code

import math

w, h = map(int, input().split())
n, a, b = map(int, input().split())

if w < a or h < b:
    print(-1)
else:
    letter = (w // a) * (h // b)
    print(math.ceil(n / letter))