結果

問題 No.2125 Inverse Sum
ユーザー pitPpitP
提出日時 2022-11-18 21:45:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 668 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 60,412 KB
最終ジャッジ日時 2024-09-20 02:07:41
合計ジャッジ時間 2,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,356 KB
testcase_01 AC 37 ms
53,372 KB
testcase_02 AC 34 ms
53,068 KB
testcase_03 AC 34 ms
54,244 KB
testcase_04 AC 35 ms
52,664 KB
testcase_05 WA -
testcase_06 AC 38 ms
58,472 KB
testcase_07 WA -
testcase_08 AC 35 ms
52,744 KB
testcase_09 AC 35 ms
53,820 KB
testcase_10 AC 37 ms
58,716 KB
testcase_11 AC 36 ms
52,604 KB
testcase_12 AC 34 ms
53,144 KB
testcase_13 AC 39 ms
59,016 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 41 ms
59,788 KB
testcase_17 AC 41 ms
59,724 KB
testcase_18 WA -
testcase_19 AC 39 ms
59,576 KB
testcase_20 AC 39 ms
59,040 KB
testcase_21 AC 39 ms
59,112 KB
testcase_22 WA -
testcase_23 AC 41 ms
58,760 KB
testcase_24 WA -
testcase_25 AC 35 ms
52,200 KB
testcase_26 AC 35 ms
53,348 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
53,216 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd,ceil,sqrt
p,q = map(int,input().split())
g = gcd(p,q)
p //= g
q //= g

if p/q > 2:
    print(0)
elif p//q == 2:
    print(1)
    print(1,1)
elif p == q + 1:
    ans = set()
    ans.add((1,q))
    ans.add((q,1))
    print(len(ans))
    for (n,m) in ans:
        print(n,m)
elif p == q:
    print(1)
    print(2,2)
elif p/q < 1:
    nm = []
    for n in range(1,ceil(sqrt(q))+1):
        if (p*n-q > 0) and ((q*n)%(p*n-q) == 0):
            nm.append((n,(q*n)//(p*n-q)))
    ans = set()
    for (n,m) in nm:
        ans.add((n,m))
        ans.add((m,n))
    ans = list(ans)
    ans.sort()
    print(len(ans))
    for (n,m) in ans:
        print(n,m)
0