Codeforces 1A (数学题)

A. Theatre Square
http://codeforces.com/problemset/problem/1/A

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 4
Output
4
题目分析:
简单的数字问题,res=(n/a+(n%a>0))*(m/a+(m%a>0)),

AC代码:
/**
  *@xiaoran
  *题目意思,给出矩形的长和宽n,m,和正方形瓷砖的边长a,
  *求全部覆盖矩形需要多少的瓷砖
  */
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define LL long long
using namespace std;
int main(){
    LL n,m,a;
    while(~scanf("%lld%lld%lld",&n,&m,&a)){
        printf("%lld\n",(n/a+(n%a>0))*(m/a+(m%a>0)));
    }
    return 0;
}


你可能感兴趣的:(ACMProblem,codeforces,math)