結果

問題 No.1552 Simple Dice Game
ユーザー 👑 KazunKazun
提出日時 2021-06-19 03:48:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 740 ms / 2,500 ms
コード長 176 bytes
コンパイル時間 415 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 61,568 KB
最終ジャッジ日時 2024-06-22 21:52:04
合計ジャッジ時間 9,528 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,652 KB
testcase_01 AC 33 ms
53,496 KB
testcase_02 AC 32 ms
53,412 KB
testcase_03 AC 638 ms
60,108 KB
testcase_04 AC 33 ms
52,648 KB
testcase_05 AC 33 ms
52,272 KB
testcase_06 AC 33 ms
53,316 KB
testcase_07 AC 32 ms
53,120 KB
testcase_08 AC 32 ms
52,064 KB
testcase_09 AC 548 ms
60,392 KB
testcase_10 AC 619 ms
61,436 KB
testcase_11 AC 662 ms
60,196 KB
testcase_12 AC 218 ms
60,052 KB
testcase_13 AC 540 ms
61,084 KB
testcase_14 AC 342 ms
60,412 KB
testcase_15 AC 401 ms
60,304 KB
testcase_16 AC 87 ms
60,712 KB
testcase_17 AC 124 ms
60,760 KB
testcase_18 AC 512 ms
60,744 KB
testcase_19 AC 724 ms
60,544 KB
testcase_20 AC 740 ms
60,848 KB
testcase_21 AC 725 ms
61,568 KB
testcase_22 AC 730 ms
60,524 KB
testcase_23 AC 739 ms
61,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
Mod=998244353

X=pow(M,N,Mod)*(M-1)
Y=0
for l in range(1,M):
    Y+=pow(l,N,Mod)

two_inv=pow(2,Mod-2,Mod)
Z=N*(M+1)*(X-2*Y)*two_inv%Mod

print(Z)
0