結果

問題 No.8045 怪文書
ユーザー nebukuro09nebukuro09
提出日時 2019-04-01 21:26:27
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 145 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-26 11:02:38
合計ジャッジ時間 25,252 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

N, M = map(int, raw_input().split())
if M >= N:
    print 0
    exit()
    
ans = 1
for i in xrange(1, N+1):
    ans = ans * i % M
    
print ans
0