結果

問題 No.1552 Simple Dice Game
ユーザー 👑 KazunKazun
提出日時 2021-06-18 22:33:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,572 ms / 2,500 ms
コード長 223 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 65,068 KB
最終ジャッジ日時 2024-06-22 20:57:51
合計ジャッジ時間 19,283 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,728 KB
testcase_01 AC 35 ms
52,456 KB
testcase_02 AC 33 ms
52,740 KB
testcase_03 AC 1,320 ms
64,136 KB
testcase_04 AC 37 ms
52,592 KB
testcase_05 AC 37 ms
52,084 KB
testcase_06 AC 36 ms
52,960 KB
testcase_07 AC 37 ms
52,756 KB
testcase_08 AC 35 ms
52,216 KB
testcase_09 AC 1,171 ms
63,112 KB
testcase_10 AC 1,343 ms
63,752 KB
testcase_11 AC 1,388 ms
64,236 KB
testcase_12 AC 442 ms
64,268 KB
testcase_13 AC 1,157 ms
63,404 KB
testcase_14 AC 707 ms
63,344 KB
testcase_15 AC 833 ms
63,684 KB
testcase_16 AC 153 ms
63,320 KB
testcase_17 AC 232 ms
64,836 KB
testcase_18 AC 1,097 ms
63,456 KB
testcase_19 AC 1,553 ms
64,448 KB
testcase_20 AC 1,561 ms
63,356 KB
testcase_21 AC 1,572 ms
65,068 KB
testcase_22 AC 1,558 ms
64,516 KB
testcase_23 AC 1,565 ms
64,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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

print(Z)
0