結果

問題 No.2125 Inverse Sum
ユーザー とりゐとりゐ
提出日時 2022-11-17 20:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 709 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 98,060 KB
最終ジャッジ日時 2024-09-20 01:30:12
合計ジャッジ時間 3,010 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,812 KB
testcase_01 AC 39 ms
52,792 KB
testcase_02 AC 36 ms
52,640 KB
testcase_03 AC 36 ms
52,644 KB
testcase_04 AC 36 ms
53,600 KB
testcase_05 AC 45 ms
59,904 KB
testcase_06 AC 42 ms
59,004 KB
testcase_07 AC 39 ms
57,524 KB
testcase_08 AC 40 ms
58,624 KB
testcase_09 AC 36 ms
52,196 KB
testcase_10 AC 40 ms
58,328 KB
testcase_11 AC 37 ms
53,024 KB
testcase_12 AC 35 ms
53,072 KB
testcase_13 AC 37 ms
58,944 KB
testcase_14 AC 42 ms
60,716 KB
testcase_15 AC 39 ms
58,276 KB
testcase_16 AC 43 ms
60,584 KB
testcase_17 AC 40 ms
58,380 KB
testcase_18 AC 39 ms
59,148 KB
testcase_19 AC 38 ms
58,188 KB
testcase_20 AC 46 ms
60,668 KB
testcase_21 AC 38 ms
59,464 KB
testcase_22 AC 41 ms
58,480 KB
testcase_23 AC 40 ms
58,064 KB
testcase_24 AC 37 ms
58,128 KB
testcase_25 AC 37 ms
57,976 KB
testcase_26 AC 34 ms
54,100 KB
testcase_27 AC 200 ms
98,060 KB
testcase_28 AC 180 ms
91,172 KB
testcase_29 AC 93 ms
82,248 KB
testcase_30 AC 37 ms
52,792 KB
testcase_31 AC 180 ms
91,180 KB
testcase_32 AC 129 ms
68,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisors(n):
  lower,upper=[],[]
  i=1
  while i*i<=n:
    if n%i==0:
      lower.append(i)
      if i!=n//i:
        upper.append(n//i)
    i+=1
  return lower+upper[::-1]

def divisors2(n):
  # n^2 の約数列挙
  s=set()
  d=divisors(n)
  for i in d:
    for j in d:
      if n*n%(i*j)==0:
        s.add(i*j)
  s=sorted(list(s))
  return s


def solve(p,q):
  #(pa-q)*(pb-q)=q^2 を解く
  ans=[]
  check=set()
  for i in divisors2(q):
    j=q**2//i
    if (i+q)%p==0:
      if (i+q)//p not in check:
        ans.append([(i+q)//p,(j+q)//p])
        check.add((i+q)//p)
  print(len(ans))
  for i in ans:
    print(*i)

import math
p,q=map(int,input().split())
solve(p//math.gcd(p,q),q//math.gcd(p,q))
0