Codeforces Round #592 (Div. 2) CF1244A Pens and Pencils题解

Posted lhylhy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #592 (Div. 2) CF1244A Pens and Pencils题解相关的知识,希望对你有一定的参考价值。

题目链接

入门题,求(lceilfrac{a}{c} ceil)(lceilfrac{b}{d} ceil),判断和是否大于(k),大于输出(-1),小于等于则输出两数。唯一要注意的一点就是(double)(int)类型之间的转换。

#include<cstdio>
#include<cmath>
int a,t,b,c,d,k,ans;
int main(){
    scanf("%d",&t);
    while(t--){
        scanf("%d%d%d%d%d",&a,&b,&c,&d,&k);
        ans=ceil(1.0*a/c);
        ans+=ceil(1.0*b/d);
        if(ans>k)puts("-1");
        else printf("%d %d
",int(ceil(1.0*a/c)),int(ceil(1.0*b/d)));
    }
}

以上是关于Codeforces Round #592 (Div. 2) CF1244A Pens and Pencils题解的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces Round #592 (Div. 2)

Codeforces Round #592 (Div. 2)

Codeforces Round #592 (Div. 2) E

Codeforces Round #592 (Div. 2) CF1244A Pens and Pencils题解

Codeforces Round #592 (Div. 2) C - The Football Season(推公式)

Codeforces Round #328(Div2)