結果

問題 No.109 N! mod M
ユーザー titiatitia
提出日時 2022-01-26 01:31:47
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 516 bytes
コンパイル時間 1,014 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-12-17 23:54:33
合計ジャッジ時間 8,970 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 409 ms
10,624 KB
testcase_02 AC 464 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 318 ms
10,752 KB
testcase_05 TLE -
testcase_06 AC 128 ms
10,624 KB
testcase_07 AC 89 ms
10,752 KB
testcase_08 AC 33 ms
16,128 KB
権限があれば一括ダウンロードができます

ソースコード

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