結果

問題 No.1897 Sum of 2nd Max
ユーザー ShirotsumeShirotsume
提出日時 2022-02-27 12:06:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,284 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-05-06 06:45:08
合計ジャッジ時間 18,058 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 1,084 ms
18,688 KB
testcase_04 AC 1,036 ms
18,560 KB
testcase_05 AC 552 ms
14,464 KB
testcase_06 AC 579 ms
15,744 KB
testcase_07 AC 708 ms
15,616 KB
testcase_08 AC 586 ms
14,848 KB
testcase_09 AC 1,108 ms
18,432 KB
testcase_10 AC 1,038 ms
18,432 KB
testcase_11 AC 1,042 ms
18,560 KB
testcase_12 AC 1,060 ms
18,688 KB
testcase_13 AC 1,068 ms
18,560 KB
testcase_14 AC 362 ms
18,688 KB
testcase_15 AC 357 ms
18,688 KB
testcase_16 AC 507 ms
18,560 KB
testcase_17 AC 432 ms
18,560 KB
testcase_18 AC 488 ms
18,432 KB
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 29 ms
10,624 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 AC 29 ms
10,624 KB
testcase_25 AC 29 ms
10,624 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 30 ms
10,624 KB
testcase_28 AC 30 ms
10,624 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 1,069 ms
18,560 KB
testcase_31 AC 1,125 ms
18,304 KB
testcase_32 AC 850 ms
15,744 KB
testcase_33 AC 1,284 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, k):
    q = [0] * (k + 10)
    mod = 998244353
    ans = 0
    kn = pow(k, n, mod)
    for i in range(k + 1, 0, -1):
        q[i] = kn - pow(i - 1, n, mod) - (k - i + 1) * n * pow(i - 1, n - 1, mod)
        q[i] %= mod
        ans += i * (q[i] - q[i + 1])
        ans %= mod
    return ans

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

print(solve(n, k))
0