首页 > 代码库 > Codeforces Beta Round #1 A. Theatre Square

Codeforces Beta Round #1 A. Theatre Square

从今天開始。就要在Codeforces里有一个新的開始了,貌似任务非常重的说~~


Codeforces专题我将会记录全部通过的题目,事实上仅仅要通过的题目都是水题啊!。


题目大意:

依照要求计算须要多少flagstone.



以下是代码:

#include <stdio.h>
int main()
{
    long long n,m,a,r,c;
    scanf("%I64d%I64d%I64d",&n,&m,&a);
    r=n/a;
    if(n%a)r++;
    c=m/a;
    if(m%a)c++;
    printf("%I64d\n",r*c);
    return 0;
}


Codeforces Beta Round #1 A. Theatre Square