結果

問題 No.1897 Sum of 2nd Max
ユーザー lloyzlloyz
提出日時 2022-04-08 23:36:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 645 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 393 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 68,224 KB
最終ジャッジ日時 2024-05-06 09:20:00
合計ジャッジ時間 10,115 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 42 ms
51,840 KB
testcase_03 AC 519 ms
65,920 KB
testcase_04 AC 479 ms
65,792 KB
testcase_05 AC 291 ms
66,944 KB
testcase_06 AC 290 ms
65,280 KB
testcase_07 AC 365 ms
66,560 KB
testcase_08 AC 317 ms
66,560 KB
testcase_09 AC 543 ms
66,560 KB
testcase_10 AC 504 ms
66,176 KB
testcase_11 AC 511 ms
66,048 KB
testcase_12 AC 523 ms
65,920 KB
testcase_13 AC 511 ms
66,304 KB
testcase_14 AC 149 ms
61,568 KB
testcase_15 AC 152 ms
61,440 KB
testcase_16 AC 222 ms
62,464 KB
testcase_17 AC 185 ms
61,824 KB
testcase_18 AC 211 ms
62,592 KB
testcase_19 AC 39 ms
52,096 KB
testcase_20 AC 37 ms
51,840 KB
testcase_21 AC 36 ms
51,456 KB
testcase_22 AC 36 ms
51,584 KB
testcase_23 AC 35 ms
52,224 KB
testcase_24 AC 35 ms
52,096 KB
testcase_25 AC 36 ms
51,584 KB
testcase_26 AC 35 ms
51,968 KB
testcase_27 AC 35 ms
51,584 KB
testcase_28 AC 35 ms
51,712 KB
testcase_29 AC 37 ms
51,840 KB
testcase_30 AC 503 ms
66,048 KB
testcase_31 AC 543 ms
67,072 KB
testcase_32 AC 444 ms
68,224 KB
testcase_33 AC 645 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
mod = 998244353

def calc(x):
    num = pow(k, n, mod)
    num -= pow(x - 1, n, mod)
    num %= mod
    num -= ((k - x + 1) * n % mod) * pow(x - 1, n - 1, mod) % mod
    num %= mod
    return num

ans = 0
for i in range(1, k + 1):
    num = calc(i) - calc(i + 1)
    ans += i * num % mod
    ans %= mod
print(ans)
0