CF1A-Theatre Square

Posted ac-ac

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CF1A-Theatre Square相关的知识,希望对你有一定的参考价值。

CF1A-Theatre Square

  1. 题意:(n*m)的面积铺(a*a)的砖块,最少需要多少。

  2. 思路:上取整即可,(ans = ((n+a-1)/a)*((m+a-1)/a))

  3. 代码实现:

    #include<bits/stdc++.h>
    using namespace std;
    typedef long long ll;
    int main(void){
        ll n,m,a;
        cin >> n >> m >> a;
        cout<<((n+a-1)/a)*((m+a-1)/a)<<endl;
        return 0;
    }

以上是关于CF1A-Theatre Square的主要内容,如果未能解决你的问题,请参考以下文章

Theatre Square 题解代码

Android 上的 openGl es 在右上角显示一个 Square

推导函数,两段代码是一样滴结果!

[Leetcode221]最大面积 Maximal Square

通知图标在 Nougat 中显示为 Square

POJ 1084 Square Destroyer