Problem - 1A - Codeforces
A. Theatre Square
Theatre Square in the capital city of Berland has a rectangular shape with the sizen×mmeters. 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 sizea×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,manda(1 ≤n,m,a≤ 109).
Output
Write the needed number of flagstones
十分简单,直接上代码。
C++实现:
#include<bits/stdc++.h>
using namespace std;
int main()
{
long long int n,m,a,nx,mx;
cin>>n>>m>>a;
nx=n/a+(n%a?1:0);
mx=m/a+(m%a?1:0);
cout<<nx*mx<<endl;
return 0;
}