結果

問題 No.1552 Simple Dice Game
ユーザー titiatitia
提出日時 2021-06-19 02:20:02
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 217 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 82,068 KB
実行使用メモリ 76,368 KB
最終ジャッジ日時 2024-06-22 21:50:31
合計ジャッジ時間 28,128 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 34 ms
52,352 KB
testcase_02 AC 33 ms
51,840 KB
testcase_03 AC 2,057 ms
75,776 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 AC 33 ms
51,584 KB
testcase_06 AC 34 ms
52,352 KB
testcase_07 AC 34 ms
52,224 KB
testcase_08 AC 33 ms
52,224 KB
testcase_09 AC 1,784 ms
76,032 KB
testcase_10 AC 2,030 ms
75,904 KB
testcase_11 AC 2,094 ms
75,904 KB
testcase_12 AC 647 ms
75,520 KB
testcase_13 AC 1,750 ms
75,852 KB
testcase_14 AC 1,049 ms
75,776 KB
testcase_15 AC 1,235 ms
75,776 KB
testcase_16 AC 212 ms
75,816 KB
testcase_17 AC 353 ms
75,528 KB
testcase_18 AC 1,658 ms
75,648 KB
testcase_19 AC 2,288 ms
76,232 KB
testcase_20 AC 2,303 ms
75,840 KB
testcase_21 AC 2,300 ms
76,132 KB
testcase_22 AC 2,285 ms
76,368 KB
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ANS=0
INV=pow(2,mod-2,mod)

for s in range(M):
    ko=(pow(s+1,N,mod)-pow(s,N,mod)*2+pow(s-1,N,mod))*(M-s)
    ANS+=ko*s*((1+1+s)+(M+M-s))*N*INV*INV
    ANS%=mod

print(ANS)
0