結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 37 ms
52,864 KB
testcase_05 AC 37 ms
52,608 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 162 ms
160,512 KB
testcase_08 AC 51 ms
66,816 KB
testcase_09 AC 58 ms
74,368 KB
testcase_10 AC 48 ms
65,280 KB
testcase_11 AC 175 ms
171,236 KB
testcase_12 AC 184 ms
181,376 KB
testcase_13 MLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

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