結果

問題 No.1552 Simple Dice Game
ユーザー nok0nok0
提出日時 2021-06-18 20:15:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 868 ms / 2,500 ms
コード長 403 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 100,392 KB
最終ジャッジ日時 2024-06-22 19:37:38
合計ジャッジ時間 11,556 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,404 KB
testcase_01 AC 38 ms
52,852 KB
testcase_02 AC 38 ms
53,568 KB
testcase_03 AC 759 ms
100,280 KB
testcase_04 AC 38 ms
52,192 KB
testcase_05 AC 37 ms
53,828 KB
testcase_06 AC 38 ms
53,288 KB
testcase_07 AC 39 ms
51,752 KB
testcase_08 AC 39 ms
53,016 KB
testcase_09 AC 660 ms
91,480 KB
testcase_10 AC 743 ms
95,748 KB
testcase_11 AC 769 ms
95,784 KB
testcase_12 AC 259 ms
73,276 KB
testcase_13 AC 647 ms
92,736 KB
testcase_14 AC 408 ms
79,180 KB
testcase_15 AC 481 ms
83,676 KB
testcase_16 AC 106 ms
65,192 KB
testcase_17 AC 150 ms
67,112 KB
testcase_18 AC 613 ms
89,384 KB
testcase_19 AC 855 ms
100,172 KB
testcase_20 AC 860 ms
99,388 KB
testcase_21 AC 854 ms
100,392 KB
testcase_22 AC 851 ms
99,544 KB
testcase_23 AC 868 ms
99,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
res, mod = 0, 998244353
pow_table = []
for i in range(m + 1):
    pow_table.append(pow(i, n, mod))
for r in range(1, m + 1):
    res += (pow_table[r] - pow_table[r - 1]) * r
    res %= mod
for l in range(1, m + 1):
    res -= (pow_table[m - l + 1] - pow_table[m - l]) * l
    res %= mod
res *= n
res %= mod
res *= m + 1
res %= mod
res *= 499122177
res %= mod
print(res)
0