結果

問題 No.3045 怪文書
ユーザー taki_gtaki_g
提出日時 2019-04-01 21:53:16
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 175 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 846,488 KB
最終ジャッジ日時 2024-11-26 22:31:17
合計ジャッジ時間 14,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,864 KB
testcase_01 AC 40 ms
53,428 KB
testcase_02 AC 39 ms
53,096 KB
testcase_03 AC 37 ms
53,160 KB
testcase_04 AC 36 ms
53,380 KB
testcase_05 AC 38 ms
54,532 KB
testcase_06 AC 37 ms
53,880 KB
testcase_07 AC 167 ms
161,940 KB
testcase_08 AC 50 ms
68,600 KB
testcase_09 AC 59 ms
75,288 KB
testcase_10 AC 50 ms
66,904 KB
testcase_11 AC 183 ms
171,400 KB
testcase_12 AC 194 ms
182,648 KB
testcase_13 MLE -
testcase_14 MLE -
testcase_15 MLE -
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**9+10)
N,M = map(int,input().split())

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