比赛 |
CSP2022普及组 |
评测结果 |
RRRRRRRRRR |
题目名称 |
解密 |
最终得分 |
0 |
用户昵称 |
chengyb |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2022-10-29 16:20:25 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
long long k,n,e,d,p,q,m;
bool a=false;
int main()
{
freopen("r","decode.in",stdin);
freopen("w","decode.out",stdout);
cin>>k;
for(int i=0;i<k;i++)
{
a=false;
cin>>n>>e>>d;
if(e*d*2==n)
{
cout<<2<<" "<<e*d<<endl;
continue;
}
m=n-e*d+2;
if(m<0)
{
cout<<"NO"<<endl;
continue;
}
for(p=1;p<m/2+1;p++)
{
q=m-p;
if(p*q==n)
{
cout<<p<<" "<<q<<endl;;
a=true;
break;
}
}
if(!a)
cout<<"NO"<<endl;
}
return 0;
}