QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#583873 | #9381. 502 Bad Gateway | D06 | WA | 155ms | 3584kb | C++14 | 317b | 2024-09-22 23:22:06 | 2024-09-22 23:22:07 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
int n;
cin>>n;
for(int i=1;i<=n;i++)
{
int t;
cin>>t;
int id=ceil(sqrt(t));
int x=id*(id+1)/2+t-id,y=id;
int g=__gcd(x,y);
x/=g;
y/=g;
cout<<x<<' '<<y<<"\n";
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3584kb
input:
3 1 2 3
output:
1 1 3 2 2 1
result:
ok 3 lines
Test #2:
score: -100
Wrong Answer
time: 155ms
memory: 3584kb
input:
1000000 1 1000000000 1 1 1000000000 1 1000000000 1 1 1 1000000000 1 1 1000000000 1 1000000000 1000000000 1 1000000000 1 1 1000000000 1 1000000000 1000000000 1 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1 1 1000000000 1 1000000000 1000000000 1000000000 1000000000 1 1 1 10000000...
output:
1 1 1499991253 31623 1 1 1 1 1499991253 31623 1 1 1499991253 31623 1 1 1 1 1 1 1499991253 31623 1 1 1 1 1499991253 31623 1 1 1499991253 31623 1499991253 31623 1 1 1499991253 31623 1 1 1 1 1499991253 31623 1 1 1499991253 31623 1499991253 31623 1 1 1499991253 31623 1499991253 31623 1499991253 31623 14...
result:
wrong answer 2nd lines differ - expected: '1999961560 44721', found: '1499991253 31623'