結果

問題 No.3045 怪文書
ユーザー taki_gtaki_g
提出日時 2019-04-01 21:50:07
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 175 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 849,536 KB
最終ジャッジ日時 2024-05-05 04:33:50
合計ジャッジ時間 3,283 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 42 ms
52,736 KB
testcase_05 AC 38 ms
52,480 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 186 ms
160,640 KB
testcase_08 AC 51 ms
66,688 KB
testcase_09 AC 57 ms
74,368 KB
testcase_10 AC 48 ms
65,024 KB
testcase_11 AC 177 ms
171,136 KB
testcase_12 AC 206 ms
181,248 KB
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10000000)
N,M = map(int,input().split())

def factorial(a):
    if a==0:
        return 1
    return (a*factorial(a-1))%M
print(factorial(N))
0