結果

問題 No.8045 怪文書
ユーザー baku1101baku1101
提出日時 2019-04-01 23:23:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 85 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 334,976 KB
最終ジャッジ日時 2024-11-27 04:32:13
合計ジャッジ時間 26,104 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
56,704 KB
testcase_01 AC 34 ms
309,760 KB
testcase_02 AC 38 ms
57,088 KB
testcase_03 AC 37 ms
230,656 KB
testcase_04 AC 36 ms
56,960 KB
testcase_05 AC 35 ms
158,208 KB
testcase_06 AC 33 ms
56,704 KB
testcase_07 AC 129 ms
334,976 KB
testcase_08 AC 41 ms
65,408 KB
testcase_09 AC 45 ms
175,104 KB
testcase_10 AC 38 ms
64,896 KB
testcase_11 AC 140 ms
288,512 KB
testcase_12 AC 160 ms
84,480 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys

n,m = map(int, input().split())
print(math.factorial(n) % m)
0