A. Donut Shops1000 / 思维题
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Donut Shops1000 / 思维题相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/1373/A
#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
int main(void)
{
LL t; cin>>t;
while(t--)
{
LL a,b,c; cin>>a>>b>>c;
if(a>=c) cout<<-1<<" ";//咋买都不划算
else cout<<1<<" ";
if(a*b<=c) cout<<"-1"<<endl;//单个买更划算
else cout<<b<<endl;
}
return 0;
}
以上是关于A. Donut Shops1000 / 思维题的主要内容,如果未能解决你的问题,请参考以下文章
A. Mike and palindrome1000 / 思维