Theatre Square in the capital city of Berland has a rectangular shape with the size n × m meters. On the occasion of the city's anniversary, a decision was taken to pave the Square with square granite flagstones. Each flagstone is of the size a × a.
What is the least number of flagstones needed to pave the Square? It's allowed to cover the surface larger than the Theatre Square, but the Square has to be covered. It's not allowed to break the flagstones. The sides of flagstones should be parallel to the sides of the Square.
The input contains three positive integer numbers in the first line: n, m and a (1 ≤ n, m, a ≤ 109).
Write the needed number of flagstones.
6 6 4
4
題目是用正方形(a*a)的瓷磚鋪廣場(m*n的矩形) 一定要鋪滿,可以有多出來的不過盡可能少。。
實質是,求上整數問題: up(a/b) = ((a + b -1) / b)
代碼很短(python的特點):
n,m,a = [int(s) for s in raw_input().split()] print ((n+a-1)/a)*((m+a-1)/a)
文章列表