結果

問題 No.109 N! mod M
ユーザー convexineqconvexineq
提出日時 2021-02-19 14:45:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 191 ms / 5,000 ms
コード長 443 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 59,008 KB
最終ジャッジ日時 2024-09-16 04:08:58
合計ジャッジ時間 1,668 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,216 KB
testcase_01 AC 129 ms
57,728 KB
testcase_02 AC 155 ms
57,728 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 46 ms
58,112 KB
testcase_05 AC 191 ms
59,008 KB
testcase_06 AC 58 ms
58,240 KB
testcase_07 AC 52 ms
56,704 KB
testcase_08 AC 42 ms
57,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(n,MOD):
    r = 1%MOD
    if n >= MOD: return 0
    if n <= 1000000:
        for i in range(1,n+1):
            r *= i
            r %= MOD
        return r
    for i in range(2,int(MOD**0.5)+1):
        if MOD%i==0:
            return 0
    r = 1
    for i in range(n+1,MOD):
        r *= i
        r %= MOD
    return (-pow(r,MOD-2,MOD))%MOD

T = int(input())
for _ in range(T):
    n,MOD = map(int,input().split())
    print(f(n,MOD))
0