結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
59,412 KB
testcase_01 AC 185 ms
60,620 KB
testcase_02 AC 185 ms
60,544 KB
testcase_03 AC 208 ms
60,460 KB
testcase_04 AC 177 ms
60,720 KB
testcase_05 WA -
testcase_06 AC 202 ms
60,568 KB
testcase_07 WA -
testcase_08 AC 172 ms
60,144 KB
testcase_09 AC 177 ms
60,060 KB
testcase_10 AC 182 ms
60,864 KB
testcase_11 AC 186 ms
59,988 KB
testcase_12 AC 188 ms
60,784 KB
testcase_13 AC 190 ms
61,696 KB
testcase_14 AC 208 ms
61,748 KB
testcase_15 AC 212 ms
62,860 KB
testcase_16 AC 209 ms
62,960 KB
testcase_17 AC 208 ms
61,340 KB
testcase_18 AC 201 ms
61,284 KB
testcase_19 AC 213 ms
61,224 KB
testcase_20 AC 195 ms
61,952 KB
testcase_21 AC 208 ms
61,888 KB
testcase_22 AC 205 ms
62,496 KB
testcase_23 AC 182 ms
60,012 KB
testcase_24 WA -
testcase_25 AC 175 ms
59,512 KB
testcase_26 AC 184 ms
60,020 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 178 ms
60,364 KB
testcase_31 WA -
testcase_32 AC 179 ms
60,628 KB
権限があれば一括ダウンロードができます

ソースコード

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 ** 7):
    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