結果

問題 No.8045 怪文書
ユーザー baku1101baku1101
提出日時 2019-04-01 23:20:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 111 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 11,776 KB
最終ジャッジ日時 2024-11-27 04:29:00
合計ジャッジ時間 1,827 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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