結果
問題 | No.2125 Inverse Sum |
ユーザー | 👑 rin204 |
提出日時 | 2022-11-18 22:01:28 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,199 bytes |
コンパイル時間 | 294 ms |
コンパイル使用メモリ | 81,876 KB |
実行使用メモリ | 67,544 KB |
最終ジャッジ日時 | 2024-09-20 02:23:21 |
合計ジャッジ時間 | 2,521 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
53,716 KB |
testcase_01 | AC | 35 ms
53,216 KB |
testcase_02 | AC | 35 ms
52,708 KB |
testcase_03 | AC | 36 ms
52,592 KB |
testcase_04 | WA | - |
testcase_05 | RE | - |
testcase_06 | AC | 37 ms
54,136 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 37 ms
52,816 KB |
testcase_10 | AC | 36 ms
52,896 KB |
testcase_11 | AC | 37 ms
54,020 KB |
testcase_12 | WA | - |
testcase_13 | AC | 37 ms
53,664 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 36 ms
53,196 KB |
testcase_17 | AC | 36 ms
52,616 KB |
testcase_18 | AC | 36 ms
52,980 KB |
testcase_19 | AC | 38 ms
53,604 KB |
testcase_20 | AC | 37 ms
53,080 KB |
testcase_21 | AC | 37 ms
53,268 KB |
testcase_22 | WA | - |
testcase_23 | AC | 35 ms
53,112 KB |
testcase_24 | RE | - |
testcase_25 | WA | - |
testcase_26 | AC | 36 ms
53,484 KB |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | AC | 36 ms
52,620 KB |
testcase_31 | RE | - |
testcase_32 | WA | - |
ソースコード
from math import gcd def isprime(n): if n <= 1: return False elif n == 2: return True elif n % 2 == 0: return False A = [2, 325, 9375, 28178, 450775, 9780504, 1795265022] s = 0 d = n - 1 while d % 2 == 0: s += 1 d >>= 1 for a in A: if a % n == 0: return True x = pow(a, d, n) if x != 1: for t in range(s): if x == n - 1: break x = x * x % n else: return False return True def pollard(n): if n % 2 == 0: return 2 if isprime(n): return n f = lambda x:(x * x + 1) % n step = 0 while 1: step += 1 x = step y = f(x) while 1: p = gcd(y - x + n, n) if p == 0 or p == n: break if p != 1: return p x = f(x) y = f(f(y)) def primefact(n): if n == 1: return [] p = pollard(n) if p == n: return [p] left = primefact(p) right = primefact(n // p) left += right return sorted(left) def divisor_lst(n): if n == 1: return [1] primes = primefact(n) primes.append(primes[-1] + 1) bef = primes[0] cnt = 0 ret = [1] for p in primes: if p == bef: cnt += 1 else: times = bef le = len(ret) for _ in range(cnt): for i in range(le): ret.append(ret[i] * times) times *= bef bef = p cnt = 1 ret.sort() return ret p, q = map(int, input().split()) g = gcd(p, q) p //= g q //= g if p >= q: if (p, q) == (1, 1): print(1) print(2, 2) elif p <= 2 * q: print(1) print(1, p - q) else: print(0) exit() divs = set(divisor_lst(q)) ans = [] for n in divs: m = p - n if m < 0: continue nm = n * m if q % nm == 0: t = q // nm ans.append((n * t, m * t)) ans.sort() print(len(ans)) for row in ans: print(*row)