-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))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 11520번 And Then There Was 5 (0) | 2024.02.21 |
---|---|
[백준/파이썬] 31428번 엘리스 트랙 매칭 (0) | 2024.02.20 |
[백준/파이썬] 31429번 SUAPC 2023 Summer (0) | 2024.02.19 |
[백준/파이썬] 28960번 Плащ левитации (1) | 2024.02.18 |
[백준/파이썬] 25893번 Majestic 10 (0) | 2024.02.17 |