結果

問題 No.1552 Simple Dice Game
ユーザー KazunKazun
提出日時 2021-06-18 22:17:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,653 ms / 2,500 ms
コード長 282 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-06-22 20:42:11
合計ジャッジ時間 20,238 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,352 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 1,416 ms
75,404 KB
testcase_04 AC 36 ms
51,712 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 1,231 ms
75,632 KB
testcase_10 AC 1,403 ms
75,916 KB
testcase_11 AC 1,443 ms
75,776 KB
testcase_12 AC 464 ms
75,648 KB
testcase_13 AC 1,211 ms
75,400 KB
testcase_14 AC 752 ms
75,616 KB
testcase_15 AC 886 ms
76,032 KB
testcase_16 AC 167 ms
68,480 KB
testcase_17 AC 245 ms
72,064 KB
testcase_18 AC 1,152 ms
75,520 KB
testcase_19 AC 1,613 ms
75,428 KB
testcase_20 AC 1,625 ms
75,648 KB
testcase_21 AC 1,634 ms
75,868 KB
testcase_22 AC 1,613 ms
75,732 KB
testcase_23 AC 1,653 ms
75,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

two_inv=pow(2,Mod-2,Mod)

X=N*pow(M,N+1,Mod)*(M+1)*two_inv
X%=Mod

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

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

Y*=N*two_inv
Y%=Mod

print((X-Y)%Mod)
0