結果

問題 No.1552 Simple Dice Game
ユーザー trineutrontrineutron
提出日時 2021-06-18 23:20:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,469 ms / 2,500 ms
コード長 280 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 63,744 KB
最終ジャッジ日時 2024-06-22 21:28:31
合計ジャッジ時間 17,552 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 1,232 ms
62,848 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 35 ms
51,840 KB
testcase_08 AC 34 ms
51,840 KB
testcase_09 AC 1,074 ms
63,232 KB
testcase_10 AC 1,212 ms
63,104 KB
testcase_11 AC 1,260 ms
63,104 KB
testcase_12 AC 415 ms
63,744 KB
testcase_13 AC 1,053 ms
63,104 KB
testcase_14 AC 655 ms
63,616 KB
testcase_15 AC 772 ms
62,976 KB
testcase_16 AC 146 ms
63,104 KB
testcase_17 AC 226 ms
63,488 KB
testcase_18 AC 1,002 ms
63,360 KB
testcase_19 AC 1,413 ms
63,360 KB
testcase_20 AC 1,461 ms
63,360 KB
testcase_21 AC 1,416 ms
63,616 KB
testcase_22 AC 1,420 ms
63,488 KB
testcase_23 AC 1,469 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353
n, m = map(int, input().split())
ans = (m - 1) * pow(m, n, mod) * (m + 1) % mod
for i in range(1, m):
    ans -= pow(i, n, mod) * (i + 1) % mod
for i in range(m, 1, -1):
    ans -= pow(m + 1 - i, n, mod) * (m + i) % mod
print(ans * n * pow(2, mod - 2, mod) % mod)
0