1. 程式人生 > >Codeforces Beta Round #1 A. Theatre Square

Codeforces Beta Round #1 A. Theatre Square

tro article ces 要求 codeforce amp _id 記錄 style

從今天開始。就要在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