A. Theatre Square
time limit per test2 seconds
memory limit per test64 megabytes
inputstandard input
outputstandard output
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.
Input
The input contains three positive integer numbers in the first line: n, m and a (1 ≤ n, m, a ≤ 109).
Output
Write the needed number of flagstones.
Sample test(s)
Input
6 6 4Output
4
#include<stdio.h>
#include<string.h>
__int64 n,m,a;
int main()
{
__int64 r,c;
__int64 ans=0;
while(scanf("%I64d%I64d%I64d",&n,&m,&a)!=EOF)
{
ans=0;
if(n%a==0&&m%a==0)
printf("%I64d\n",n*m/(a*(a)));
else if(n<=a&&m<=a)
printf("1\n");
else if(n<=a&&m>=a)
{
ans=m%2==0?m/2+1:m/2;
printf("%I64d\n",ans);
}
else if(m<=a&&n>=a)
{
ans=n%2==0?n/2+1:n/2;
printf("%I64d\n",ans);
}
else
{
if(m%a==0)
{
r=n/a;
c=m/a;
ans+=r*c+c;
printf("%I64d\n",ans);
}
else if(n%a==0)
{
r=n/a;
c=m/a;
ans+=r*c+r;
printf("%I64d\n",ans);
}
else
{
r=n/a;
c=m/a;
ans+=r*c;
ans+=r+1+c;
printf("%I64d\n",ans);
}
}
}
return 0;
}