5532번 풀이 [Python]

sua·2022년 5월 24일
0

Baekjoon

목록 보기
34/161
post-thumbnail

문제


풀이

import math

a = []
for i in range(5) :
    a.append(int(input()))
n = a[0] - max(math.ceil(a[1] / a[3]), math.ceil(a[2] / a[4]))

print(n)
profile
가보자고

0개의 댓글