1A-Theatre Square

作者: 臧家驹 | 来源:发表于2018-02-21 22:31 被阅读0次

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;
 } 

相关文章

网友评论

    本文标题:1A-Theatre Square

    本文链接:https://www.haomeiwen.com/subject/cvtatftx.html