結果

問題 No.8045 怪文書
ユーザー baku1101baku1101
提出日時 2019-04-01 23:15:17
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 123 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 80,188 KB
最終ジャッジ日時 2024-11-27 04:14:21
合計ジャッジ時間 1,857 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,616 KB
testcase_01 WA -
testcase_02 AC 37 ms
52,744 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 35 ms
53,388 KB
testcase_06 AC 35 ms
52,492 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 37 ms
53,020 KB
testcase_20 AC 37 ms
52,624 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