結果

問題 No.8045 怪文書
ユーザー iNoma87976671iNoma87976671
提出日時 2019-04-01 23:38:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 81 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,948 KB
最終ジャッジ日時 2024-11-27 04:56:03
合計ジャッジ時間 34,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
17,444 KB
testcase_01 AC 31 ms
17,316 KB
testcase_02 AC 31 ms
17,316 KB
testcase_03 AC 32 ms
21,416 KB
testcase_04 AC 30 ms
17,316 KB
testcase_05 AC 29 ms
21,548 KB
testcase_06 AC 29 ms
17,444 KB
testcase_07 TLE -
testcase_08 AC 48 ms
17,448 KB
testcase_09 AC 99 ms
21,804 KB
testcase_10 AC 42 ms
17,440 KB
testcase_11 TLE -
testcase_12 TLE -
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 #

N,M = map(int,input().split())
n = 1
for i in range(1,N+1):
    n *= i
print(n%M)
0