백준 19698번: 헛간 청약

danbibibi·2021년 10월 12일
0

문제

문제 바로가기> 백준 19698번: 헛간 청약

풀이

정사각형이 직사각형의 가로길이와 세로 길이에따라 각각 몇 개가 들어갈 수 있는지 구해서 곱해주면 된다.

def solution():
    import sys
    input = sys.stdin.readline
    N, W, H, L = map(int, input().split())
    ans = (W//L)*(H//L)
    if ans <= N: print(ans)
    else: print(N)
solution()
profile
블로그 이전) https://danbibibi.tistory.com

0개의 댓글