結果

問題 No.3045 怪文書
ユーザー もりをもりを
提出日時 2019-04-01 21:58:40
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 163 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 28,648 KB
最終ジャッジ日時 2024-11-26 22:46:27
合計ジャッジ時間 26,120 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
16,000 KB
testcase_01 AC 32 ms
27,804 KB
testcase_02 AC 32 ms
16,128 KB
testcase_03 AC 30 ms
27,004 KB
testcase_04 AC 34 ms
16,000 KB
testcase_05 AC 31 ms
26,760 KB
testcase_06 AC 31 ms
16,128 KB
testcase_07 AC 211 ms
28,648 KB
testcase_08 AC 34 ms
16,384 KB
testcase_09 AC 41 ms
27,192 KB
testcase_10 AC 34 ms
16,128 KB
testcase_11 AC 264 ms
28,592 KB
testcase_12 AC 320 ms
17,348 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 #

# YOU ARE GIVEN TWO INTEGERS N AND M.
# YOUR TASK IS TO FIND THE FACTORIAL OF N, MODULO M.
import math
n,m = map(int,input().split())
print(math.factorial(n) % m)
0