QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#583315 | #9381. 502 Bad Gateway | frankly6# | WA | 195ms | 3676kb | C++17 | 829b | 2024-09-22 19:32:34 | 2024-09-22 19:32:35 |
Judging History
answer
#include<iostream>
#include<cstdio>
#include<cmath>
#define int long long
using namespace std;
const int MX=1000100;
typedef long long ll;
int T;
int read()
{
int r=0, f=1; char ch=getchar();
while(ch<'0'||ch>'9') {if(ch=='-') f=-1; ch=getchar();}
while(ch>='0'&&ch<='9') {r=r*10+ch-'0'; ch=getchar();}
return r*f;
}
int gcd(int a, int b){return b==0?a:gcd(b,a%b);}
signed main()
{
// freopen("testdata.in","r",stdin);
T=read();
while(T--)
{
int tim=read();
int c=sqrt(2*tim);
double a1=(double)(tim/c)+double((c-1)/2);
double a2=(double)(tim/(c+1))+double(c/2);
if(a1>a2) c++;
int g1=2*tim+c*c-c;
int g2=2*c;
int g=gcd(g1,g2);
cout << g1/g << " " << g2/g << '\n';
}
return (0-0);
}
详细
Test #1:
score: 100
Accepted
time: 0ms
memory: 3676kb
input:
3 1 2 3
output:
1 1 3 2 2 1
result:
ok 3 lines
Test #2:
score: 0
Accepted
time: 139ms
memory: 3532kb
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 1999961560 44721 1 1 1 1 1999961560 44721 1 1 1999961560 44721 1 1 1 1 1 1 1999961560 44721 1 1 1 1 1999961560 44721 1 1 1999961560 44721 1999961560 44721 1 1 1999961560 44721 1 1 1 1 1999961560 44721 1 1 1999961560 44721 1999961560 44721 1 1 1999961560 44721 1999961560 44721 1999961560 44721 19...
result:
ok 1000000 lines
Test #3:
score: -100
Wrong Answer
time: 195ms
memory: 3600kb
input:
1000000 158260522 877914575 602436426 24979445 861648772 623690081 433933447 476190629 262703497 211047202 971407775 628894325 731963982 822804784 450968417 430302156 982631932 161735902 880895728 923078537 707723857 189330739 910286918 802329211 404539679 303238506 317063340 492686568 773361868 125...
output:
316511467 17791 877891213 20951 1204845831 34711 49954223 7068 215406386 5189 623676492 17659 867864517 29460 952344999 30860 262700539 11461 211032449 10272 1942776701 44077 251551941 7093 1463896912 38261 1645584679 40566 901913913 30032 107573492 3667 1965228547 44331 323457022 17985 1761783079 4...
result:
wrong answer 2nd lines differ - expected: '1755824328 41903', found: '877891213 20951'