結果

問題 No.3045 怪文書
ユーザー uwiuwi
提出日時 2019-04-02 18:55:08
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
WA  
実行時間 -
コード長 85 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 10,500 KB
実行使用メモリ 13,228 KB
最終ジャッジ日時 2023-08-20 12:17:44
合計ジャッジ時間 3,862 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 15 ms
7,772 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 14 ms
7,812 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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