結果

問題 No.2125 Inverse Sum
ユーザー gr1msl3ygr1msl3y
提出日時 2022-11-25 23:53:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 61,056 KB
最終ジャッジ日時 2024-10-02 06:21:06
合計ジャッジ時間 3,413 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 51 ms
59,264 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 44 ms
52,096 KB
testcase_10 AC 51 ms
59,648 KB
testcase_11 AC 40 ms
52,608 KB
testcase_12 AC 42 ms
52,096 KB
testcase_13 WA -
testcase_14 AC 49 ms
60,032 KB
testcase_15 AC 47 ms
58,880 KB
testcase_16 AC 48 ms
58,496 KB
testcase_17 AC 47 ms
58,368 KB
testcase_18 WA -
testcase_19 AC 45 ms
58,240 KB
testcase_20 AC 50 ms
58,752 KB
testcase_21 AC 45 ms
58,240 KB
testcase_22 WA -
testcase_23 AC 46 ms
57,728 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 40 ms
52,096 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 41 ms
52,224 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
P, Q = map(int, input().split())
g = gcd(P, Q)
P //= g
Q //= g
S = set()
for i in range(1, int((2*Q)**0.5)+1):
    if Q % i == 0:
        S.add(i)
        S.add(2*Q//i)
S = sorted(set(S))

ans = []
for s in S:
    for t in S:
        if 2*Q//s+2*Q//t == 2*P:
            ans.append([s, t])

print(len(ans))
for a in ans:
    print(*a)
0