結果

問題 No.1552 Simple Dice Game
ユーザー nok0nok0
提出日時 2021-06-18 20:34:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 830 ms / 2,500 ms
コード長 320 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 111,964 KB
最終ジャッジ日時 2024-06-22 19:38:11
合計ジャッジ時間 10,981 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,684 KB
testcase_01 AC 34 ms
53,004 KB
testcase_02 AC 33 ms
52,380 KB
testcase_03 AC 717 ms
111,956 KB
testcase_04 AC 33 ms
51,944 KB
testcase_05 AC 34 ms
52,164 KB
testcase_06 AC 35 ms
53,580 KB
testcase_07 AC 33 ms
52,808 KB
testcase_08 AC 33 ms
52,348 KB
testcase_09 AC 624 ms
104,112 KB
testcase_10 AC 701 ms
107,676 KB
testcase_11 AC 724 ms
107,864 KB
testcase_12 AC 244 ms
72,368 KB
testcase_13 AC 619 ms
104,052 KB
testcase_14 AC 371 ms
87,060 KB
testcase_15 AC 449 ms
95,100 KB
testcase_16 AC 94 ms
64,216 KB
testcase_17 AC 133 ms
67,324 KB
testcase_18 AC 575 ms
100,820 KB
testcase_19 AC 805 ms
111,940 KB
testcase_20 AC 830 ms
111,964 KB
testcase_21 AC 818 ms
111,740 KB
testcase_22 AC 812 ms
111,792 KB
testcase_23 AC 823 ms
111,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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