码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces 1A Theatre Square

时间:2018-06-17 13:38:22      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:alt   class   names   turn   http   The   分享   out   pac   

技术分享图片

题目链接

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

#include<iostream>

using namespace std;

int main()
{
    long long n,m,a;
    cin>>n>>m>>a;
    long long a1,a2;
    if(n%a!=0)
    {
        a1=n/a+1;
    }else
    {
        a1=n/a;
    }

    if(m%a!=0)
    {
        a2=m/a+1;
    }else
    {
        a2=m/a;
    }
    long long sum;
    sum=a1*a2;

    cout<<sum;


    return 0;
}

 

Codeforces 1A Theatre Square

标签:alt   class   names   turn   http   The   分享   out   pac   

原文地址:https://www.cnblogs.com/CMlhc/p/9192541.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!