結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 WA -
testcase_02 AC 30 ms
10,624 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 28 ms
10,752 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 26 ms
10,624 KB
testcase_20 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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