QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#583299#9381. 502 Bad GatewayLightFeatherWA 243ms3640kbC++201.1kb2024-09-22 19:28:552024-09-24 14:56:52

Judging History

你现在查看的是最新测评结果

  • [2024-09-24 14:56:52]
  • 自动重测本题所有获得100分的提交记录
  • 测评结果:WA
  • 用时:243ms
  • 内存:3640kb
  • [2024-09-24 14:55:37]
  • hack成功,自动添加数据
  • (/hack/886)
  • [2024-09-22 19:28:55]
  • 评测
  • 测评结果:100
  • 用时:258ms
  • 内存:3708kb
  • [2024-09-22 19:28:55]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
#define int long long
typedef vector<int> VI;
typedef pair<int, int> PII;
typedef long long ll;
typedef unsigned long long ull;

constexpr int N = 1e4 + 10;

void solve() {
    int t;
    cin >> t;
    int c = sqrt(2 * t);
    int ct = c, cb = min(c + 1, t);
    if(ct * ct == t)
        cb = ct;
    int it = t;
    int fz1 = ct * ct - ct + 2 * it;
    int fm1 = 2 * ct;
    int fz2 = cb * cb - cb + 2 * it;
    int fm2 = 2 * cb;
    int cmp1 = fz1 * fm2, cmp2 = fz2 * fm1;
    int fz, fm;
    if(cmp1 <= cmp2) {
        fz = fz1, fm = fm1;
        fz /= __gcd(fz1, fm1);
        fm /= __gcd(fz1, fm1);
    }
    else {
        fz = fz2, fm = fm2;
        fz /= __gcd(fz2, fm2);
        fm /= __gcd(fz2, fm2);
    }
    cout << fz << " " << fm << endl;
    // cout << cb << ' ' << ct << endl;
}

signed main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(nullptr);
    int t = 1;
    cin >> t;
    while(t --)
        solve();
    return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 3612kb

input:

3
1
2
3

output:

1 1
3 2
2 1

result:

ok 3 lines

Test #2:

score: 0
Accepted
time: 166ms
memory: 3640kb

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: 0
Accepted
time: 243ms
memory: 3552kb

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
1755824328 41903
1204845831 34711
49954223 7068
1723292600 41513
623676492 17659
867864517 29460
952375859 30861
262700539 11461
422085442 20545
1942776701 44077
251551941 7093
1463896912 38261
1645584679 40566
901913913 30032
107573492 3667
1965228547 44331
323457022 17985
176178307...

result:

ok 1000000 lines

Extra Test:

score: -3
Extra Test Failed : Wrong Answer on 2
time: 0ms
memory: 3700kb

input:

1
4

output:

5 2

result:

wrong answer 1st lines differ - expected: '7 3', found: '5 2'