結果

問題 No.1897 Sum of 2nd Max
ユーザー ShirotsumeShirotsume
提出日時 2022-02-13 11:11:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,829 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-05-06 06:44:29
合計ジャッジ時間 24,294 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 1,470 ms
18,432 KB
testcase_04 AC 1,346 ms
18,432 KB
testcase_05 AC 765 ms
14,464 KB
testcase_06 AC 800 ms
15,616 KB
testcase_07 AC 1,007 ms
15,744 KB
testcase_08 AC 825 ms
14,848 KB
testcase_09 AC 1,579 ms
18,560 KB
testcase_10 AC 1,462 ms
18,432 KB
testcase_11 AC 1,475 ms
18,432 KB
testcase_12 AC 1,487 ms
18,560 KB
testcase_13 AC 1,543 ms
18,432 KB
testcase_14 AC 462 ms
18,432 KB
testcase_15 AC 455 ms
18,560 KB
testcase_16 AC 676 ms
18,432 KB
testcase_17 AC 554 ms
18,560 KB
testcase_18 AC 635 ms
18,432 KB
testcase_19 AC 29 ms
10,752 KB
testcase_20 AC 29 ms
10,880 KB
testcase_21 AC 28 ms
10,624 KB
testcase_22 AC 27 ms
10,752 KB
testcase_23 AC 29 ms
10,752 KB
testcase_24 AC 28 ms
10,752 KB
testcase_25 AC 29 ms
10,752 KB
testcase_26 AC 29 ms
10,752 KB
testcase_27 AC 29 ms
10,752 KB
testcase_28 AC 29 ms
10,752 KB
testcase_29 AC 29 ms
10,752 KB
testcase_30 AC 1,461 ms
18,432 KB
testcase_31 AC 1,616 ms
18,432 KB
testcase_32 AC 1,213 ms
16,000 KB
testcase_33 AC 1,829 ms
18,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, k):
    q = [0] * (k + 10)
    mod = 998244353
    ans = 0
    for i in range(k + 1, 0, -1):
        q[i] = pow(k, n, mod) - 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