結果

問題 No.1552 Simple Dice Game
ユーザー titiatitia
提出日時 2022-10-12 04:28:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,471 ms / 2,500 ms
コード長 237 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 76,080 KB
最終ジャッジ日時 2024-06-25 22:21:22
合計ジャッジ時間 29,192 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,084 KB
testcase_01 AC 35 ms
52,212 KB
testcase_02 AC 37 ms
52,164 KB
testcase_03 AC 2,115 ms
75,612 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 1,857 ms
75,748 KB
testcase_10 AC 2,097 ms
75,648 KB
testcase_11 AC 2,164 ms
75,944 KB
testcase_12 AC 678 ms
75,776 KB
testcase_13 AC 1,807 ms
75,648 KB
testcase_14 AC 1,107 ms
75,868 KB
testcase_15 AC 1,312 ms
75,648 KB
testcase_16 AC 227 ms
70,272 KB
testcase_17 AC 354 ms
72,960 KB
testcase_18 AC 1,699 ms
75,904 KB
testcase_19 AC 2,426 ms
75,648 KB
testcase_20 AC 2,443 ms
75,776 KB
testcase_21 AC 2,459 ms
75,776 KB
testcase_22 AC 2,453 ms
75,648 KB
testcase_23 AC 2,471 ms
76,080 KB
権限があれば一括ダウンロードができます

ソースコード

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%mod*((1+1+s)+(M+M-s))%mod*N%mod*INV%mod*INV%mod
    ANS%=mod

print(ANS)
0