Introfor

[백준] 5532번 방학 숙제 본문

Programming_prob/BaekJoon

[백준] 5532번 방학 숙제

YongArtist 2020. 10. 19. 23:37
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from math import ceil
 
 
def solution():
    lst = [int(input()) for _ in range(5)]
    kor_ = ceil(lst[1]/lst[3])
    math_ = ceil(lst[2]/lst[4])
    if kor_ > math_:
        return lst[0- kor_
    return lst[0- math_
 
 
res = solution()
print(res)
cs

'Programming_prob > BaekJoon' 카테고리의 다른 글

[백준] 5596번 시험 점수  (0) 2020.10.19
[백준] 3004번 체스판 조각  (0) 2020.10.19
[백준] 2525번 오븐 시계  (0) 2020.10.19
[백준] 2480번 주사위 세개  (0) 2020.10.18
[백준] 1978번 소수 찾기  (0) 2020.10.10
Comments