結果
問題 | No.109 N! mod M |
ユーザー | mkawa2 |
提出日時 | 2023-02-28 12:52:53 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,699 bytes |
コンパイル時間 | 275 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 60,032 KB |
最終ジャッジ日時 | 2024-09-15 15:16:06 |
合計ジャッジ時間 | 4,993 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
57,728 KB |
testcase_01 | AC | 158 ms
59,136 KB |
testcase_02 | AC | 102 ms
58,240 KB |
testcase_03 | AC | 44 ms
52,224 KB |
testcase_04 | AC | 98 ms
59,392 KB |
testcase_05 | AC | 3,498 ms
60,032 KB |
testcase_06 | AC | 55 ms
58,624 KB |
testcase_07 | WA | - |
testcase_08 | AC | 46 ms
57,856 KB |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = (1 << 63)-1 # inf = (1 << 31)-1 md = 10**9+7 # md = 998244353 def prime_factorization(a): pp, ee = [], [] if a & 1 == 0: pp += [2] ee += [0] while a & 1 == 0: a >>= 1 ee[-1] += 1 p = 3 while p**2 <= a: if a%p == 0: pp += [p] ee += [0] while a%p == 0: a //= p ee[-1] += 1 p += 2 if a > 1: pp += [a] ee += [1] return pp, ee def solve(): n, m = LI() ans = 1 if n >= m: print(0) elif n <= 10**5+5: for a in range(2, n+1): ans = ans*a%m print(ans) else: _, ee = prime_factorization(m) if len(ee) == ee[0] == 1: a = m-1 for b in range(m-1, n, -1): a = a*pow(b, m-2, m)%m print(a) elif n*2 > m: print(0) else: a = 1 for b in range(2, n+1): a = a*b%m print(a) for _ in range(II()): solve()