結果
問題 | No.109 N! mod M |
ユーザー | maspy |
提出日時 | 2020-04-02 23:41:52 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,509 bytes |
コンパイル時間 | 166 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 48,816 KB |
最終ジャッジ日時 | 2024-06-28 15:25:47 |
合計ジャッジ時間 | 6,924 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 526 ms
44,048 KB |
testcase_01 | AC | 801 ms
48,816 KB |
testcase_02 | AC | 905 ms
48,316 KB |
testcase_03 | AC | 516 ms
44,168 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 507 ms
43,792 KB |
ソースコード
#!/usr/bin/ python3.8 import sys read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines import numpy as np T = int(readline()) def MillerRabinTest(n, maxiter=20): import random if n == 1: return False elif n == 2: return True if not n & 1: return False d = n - 1 while not (d & 1): d >>= 1 for _ in range(maxiter): a = random.randint(1, n - 1) t = d x = pow(a, t, n) while (t != n - 1) and (x != 1) and (x != n - 1): x = x * x % n t <<= 1 if (x != n - 1) and not (t & 1): return False return True def cumprod(A, MOD): L = len(A) Lsq = int(L**.5 + 1) A = np.resize(A, Lsq**2).reshape(Lsq, Lsq) for n in range(1, Lsq): A[:, n] *= A[:, n - 1] A[:, n] %= MOD for n in range(1, Lsq): A[n] *= A[n - 1, -1] A[n] %= MOD return A.ravel()[:L] def solve(): N, M = map(int, readline().split()) if N == 0: return 1 if M <= 2 * 10 ** 5 + 10: if N >= M: return 0 else: x = np.arange(1, N + 1, dtype=np.int64) return cumprod(x, M)[-1] if not MillerRabinTest(M): return 0 # P is prime P = M if N >= P: return 0 if N == P - 1: return P - 1 x = np.arange(1, P - N, dtype=np.int64) return P - cumprod(x, P)[-1] for _ in range(T): print(solve())