結果

問題 No.1552 Simple Dice Game
ユーザー trineutrontrineutron
提出日時 2021-06-18 23:24:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 742 ms / 2,500 ms
コード長 186 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 61,792 KB
最終ジャッジ日時 2024-06-22 21:29:50
合計ジャッジ時間 9,541 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,800 KB
testcase_01 AC 35 ms
52,608 KB
testcase_02 AC 35 ms
52,412 KB
testcase_03 AC 631 ms
60,688 KB
testcase_04 AC 34 ms
52,220 KB
testcase_05 AC 34 ms
52,908 KB
testcase_06 AC 36 ms
53,500 KB
testcase_07 AC 34 ms
52,340 KB
testcase_08 AC 33 ms
52,752 KB
testcase_09 AC 557 ms
60,172 KB
testcase_10 AC 630 ms
60,284 KB
testcase_11 AC 655 ms
60,712 KB
testcase_12 AC 226 ms
59,984 KB
testcase_13 AC 545 ms
60,080 KB
testcase_14 AC 339 ms
60,844 KB
testcase_15 AC 407 ms
59,928 KB
testcase_16 AC 90 ms
60,488 KB
testcase_17 AC 127 ms
61,792 KB
testcase_18 AC 520 ms
59,900 KB
testcase_19 AC 718 ms
60,912 KB
testcase_20 AC 733 ms
61,176 KB
testcase_21 AC 738 ms
60,544 KB
testcase_22 AC 735 ms
61,572 KB
testcase_23 AC 742 ms
60,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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