結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
59,608 KB
testcase_01 AC 57 ms
59,956 KB
testcase_02 AC 56 ms
60,336 KB
testcase_03 AC 58 ms
60,072 KB
testcase_04 AC 56 ms
61,224 KB
testcase_05 WA -
testcase_06 AC 44 ms
59,532 KB
testcase_07 WA -
testcase_08 AC 58 ms
60,156 KB
testcase_09 AC 54 ms
59,992 KB
testcase_10 AC 57 ms
60,980 KB
testcase_11 AC 59 ms
60,824 KB
testcase_12 AC 59 ms
60,424 KB
testcase_13 AC 63 ms
61,240 KB
testcase_14 AC 64 ms
61,860 KB
testcase_15 AC 62 ms
63,348 KB
testcase_16 AC 63 ms
61,392 KB
testcase_17 AC 62 ms
61,716 KB
testcase_18 AC 61 ms
61,436 KB
testcase_19 AC 64 ms
62,120 KB
testcase_20 AC 58 ms
61,732 KB
testcase_21 AC 62 ms
62,180 KB
testcase_22 AC 62 ms
62,072 KB
testcase_23 AC 56 ms
61,516 KB
testcase_24 WA -
testcase_25 AC 57 ms
60,160 KB
testcase_26 AC 58 ms
60,972 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 57 ms
59,528 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
sys.setrecursionlimit(5 * 10 ** 5)
from pypyjit import set_param
set_param('max_unroll_recursion=-1')
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353

p, q = mi()

ans = []
for n in range(1, 10 ** 6):
    if p * n - q > 0 and (q * n) % (p * n - q) == 0:
        m = (q * n) // (p * n - q)
        if m > 0:
            ans.append((n, m))
            ans.append((m, n))
ans = list(set(ans))

ans.sort()
print(len(ans))
for n, m in ans:
    print(n, m)
0