QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#587607 | #9381. 502 Bad Gateway | Niiu | WA | 0ms | 3580kb | C++14 | 421b | 2024-09-24 20:48:40 | 2024-09-24 20:48:42 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
void solve()
{
int t;
cin>>t;
int c=sqrt(2*t);
double x=c*1.0/2+t*1.0/c,y=(c+1)*1.0/2+t*1.0/(c+1);
if(x>y)
{
c++;
}
int xx=c*c+t*c-c;
int yy=2*c;
int g=__gcd(xx,yy);
cout<<xx/g<<' '<<yy/g<<'\n';
}
int main()
{
int T;
cin>>T;
while(T--)
{
solve();
}
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3580kb
input:
3 1 2 3
output:
1 2 3 2 2 1
result:
wrong answer 1st lines differ - expected: '1 1', found: '1 2'