문제 바로가기> 백준 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()