結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,000 KB
testcase_01 AC 35 ms
52,524 KB
testcase_02 AC 36 ms
52,120 KB
testcase_03 AC 681 ms
60,648 KB
testcase_04 AC 37 ms
51,984 KB
testcase_05 AC 36 ms
52,312 KB
testcase_06 AC 36 ms
52,420 KB
testcase_07 AC 36 ms
52,012 KB
testcase_08 AC 36 ms
53,424 KB
testcase_09 AC 616 ms
61,228 KB
testcase_10 AC 705 ms
59,980 KB
testcase_11 AC 727 ms
60,200 KB
testcase_12 AC 228 ms
60,376 KB
testcase_13 AC 600 ms
60,080 KB
testcase_14 AC 372 ms
60,376 KB
testcase_15 AC 446 ms
61,292 KB
testcase_16 AC 98 ms
60,236 KB
testcase_17 AC 139 ms
60,724 KB
testcase_18 AC 571 ms
60,596 KB
testcase_19 AC 777 ms
59,964 KB
testcase_20 AC 792 ms
60,660 KB
testcase_21 AC 794 ms
60,592 KB
testcase_22 AC 797 ms
60,328 KB
testcase_23 AC 803 ms
60,228 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+1):
    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