結果

問題 No.2125 Inverse Sum
ユーザー qibqib
提出日時 2022-11-21 19:18:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 503 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 70,188 KB
最終ジャッジ日時 2024-09-22 10:23:08
合計ジャッジ時間 2,765 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,504 KB
testcase_01 AC 36 ms
53,040 KB
testcase_02 AC 37 ms
52,984 KB
testcase_03 AC 37 ms
53,004 KB
testcase_04 AC 37 ms
52,344 KB
testcase_05 WA -
testcase_06 AC 40 ms
59,548 KB
testcase_07 AC 39 ms
57,648 KB
testcase_08 AC 40 ms
58,180 KB
testcase_09 AC 36 ms
53,216 KB
testcase_10 AC 42 ms
58,776 KB
testcase_11 WA -
testcase_12 AC 37 ms
53,152 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 40 ms
59,056 KB
testcase_24 AC 40 ms
57,996 KB
testcase_25 AC 40 ms
57,756 KB
testcase_26 AC 37 ms
52,744 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 36 ms
52,460 KB
testcase_31 WA -
testcase_32 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

p, q = map(int, input().split())
g = math.gcd(p, q)
p //= g
q //= g

divs = set()
for x in range(1, int(math.sqrt(q)) + 1):
  if q % x == 0:
    y = q // x
    divs.add(x)
    divs.add((q * q) // x)
    divs.add(y)
    divs.add((q * q) // y)

ans = []
for x in divs:
  y = (q * q) // x
  if (x + q) % p != 0 or (y + q) % p != 0:
    continue
  m = (x + q) // p
  n = (y + q) // p
  if m > 0 and n > 0:
    ans.append((m, n))

ans.sort()
print(len(ans))
for m, n in ans:
  print(f"{m} {n}")
0