結果

問題 No.8045 怪文書
ユーザー iNoma87976671iNoma87976671
提出日時 2019-04-01 23:43:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 75 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 28,352 KB
最終ジャッジ日時 2024-11-27 05:11:06
合計ジャッジ時間 25,877 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,000 KB
testcase_01 AC 28 ms
27,540 KB
testcase_02 AC 28 ms
15,872 KB
testcase_03 AC 27 ms
26,680 KB
testcase_04 AC 27 ms
15,744 KB
testcase_05 AC 27 ms
26,756 KB
testcase_06 AC 27 ms
16,000 KB
testcase_07 AC 190 ms
28,352 KB
testcase_08 AC 29 ms
16,000 KB
testcase_09 AC 35 ms
27,068 KB
testcase_10 AC 29 ms
16,000 KB
testcase_11 AC 247 ms
28,348 KB
testcase_12 AC 290 ms
17,260 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
N,M = map(int,input().split())
n = math.factorial(N)
print(n%M)
0