結果

問題 No.3045 怪文書
ユーザー baku1101baku1101
提出日時 2019-04-01 23:15:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 123 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,280 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-05-05 08:56:09
合計ジャッジ時間 2,007 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 WA -
testcase_02 AC 37 ms
51,456 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 40 ms
51,200 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 35 ms
51,712 KB
testcase_20 AC 36 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys

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