結果
問題 | No.109 N! mod M |
ユーザー | shotoyoo |
提出日時 | 2021-06-14 23:40:24 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,225 bytes |
コンパイル時間 | 311 ms |
コンパイル使用メモリ | 82,276 KB |
実行使用メモリ | 60,880 KB |
最終ジャッジ日時 | 2024-06-07 08:40:14 |
合計ジャッジ時間 | 5,177 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 46 ms
57,728 KB |
testcase_01 | AC | 251 ms
57,856 KB |
testcase_02 | AC | 158 ms
58,112 KB |
testcase_03 | AC | 65 ms
57,984 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 54 ms
57,856 KB |
testcase_08 | AC | 68 ms
58,496 KB |
ソースコード
import sys input = lambda : sys.stdin.readline().rstrip() sys.setrecursionlimit(2*10**5+10) write = lambda x: sys.stdout.write(x+"\n") debug = lambda x: sys.stderr.write(x+"\n") writef = lambda x: print("{:.12f}".format(x)) def factor(n, m=None): # mを与えると、高々その素因数まで見て、残りは分解せずにそのまま出力する f = {} tmp = n M = int(-(-n**0.5//1))+1 if m is not None: M = min(m+1, M) for i in range(2, M+1): if tmp<i: break if tmp%i==0: cnt=0 while tmp%i==0: cnt+=1 tmp //= i f[i] = cnt if tmp!=1: f[tmp] = 1 if not f: f[n] = 1 return f def sub(n,m): if n<2*10**6: ans = 1 for i in range(1,n+1): ans *= i ans %= m else: f = factor(m) if len(f)>=2: ans = 0 elif n>=m: ans = 0 else: ans = -1 for i in range(n+1,m-1)[::-1]: ans *= pow(i,m-2,m) ans %= m return ans%m t = int(input()) for i in range(t): n,m = list(map(int, input().split())) print(sub(n,m))