A. Theatre Square 1000 / 水题
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Theatre Square 1000 / 水题相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/1/A
#include<bits/stdc++.h>
using namespace std;
int main(void)
{
long long int n,m,a; cin>>n>>m>>a;
long long int cnt1=0,cnt2=0;
cnt1=n/a;
cnt2=m/a;
if(n%a) cnt1++;
if(m%a) cnt2++;
cout<<cnt1*cnt2<<endl;
return 0;
}
以上是关于A. Theatre Square 1000 / 水题的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Beta Round #1 A. Theatre Square 题解
B. New Theatre Square难度 1000 / 贪心 模拟