結果

問題 No.1552 Simple Dice Game
ユーザー nok0nok0
提出日時 2021-06-18 20:11:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 336 bytes
コンパイル時間 339 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-06-22 19:38:52
合計ジャッジ時間 36,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 TLE -
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 39 ms
51,712 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 37 ms
51,968 KB
testcase_09 AC 2,345 ms
68,224 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 843 ms
68,992 KB
testcase_13 AC 2,267 ms
68,864 KB
testcase_14 AC 1,365 ms
69,148 KB
testcase_15 AC 1,686 ms
68,608 KB
testcase_16 AC 283 ms
68,352 KB
testcase_17 AC 440 ms
69,248 KB
testcase_18 AC 2,166 ms
68,864 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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