結果

問題 No.109 N! mod M
ユーザー titiatitia
提出日時 2022-01-26 01:31:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 516 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-05-10 03:12:09
合計ジャッジ時間 7,915 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
10,624 KB
testcase_01 AC 400 ms
10,752 KB
testcase_02 AC 460 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 313 ms
10,752 KB
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 解説を見た。ウィルソンの定理は知っておくべきか。

def calc(N,M):
    if M<=N:
        return 0
    if M<=2*10**5:
        ANS=1
        for i in range(1,N+1):
            ANS=ANS*i%M
        return ANS%M

    x=int(M**(1/2))

    for j in range(2,x+1):
        if M%j==0:
            return 0

    ANS=-1
    for j in range(N+1,M):
        ANS=ANS*pow(j,M-2,M)%M
    return ANS%M
    
    
    


T=int(input())
for tests in range(T):
    N,M=map(int,input().split())

    print(calc(N,M))
0