結果

問題 No.1897 Sum of 2nd Max
ユーザー ShirotsumeShirotsume
提出日時 2021-11-20 01:42:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 882 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 80,988 KB
最終ジャッジ日時 2024-11-28 11:32:51
合計ジャッジ時間 6,704 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,432 KB
testcase_01 AC 39 ms
52,924 KB
testcase_02 AC 39 ms
53,308 KB
testcase_03 AC 308 ms
80,196 KB
testcase_04 AC 296 ms
80,988 KB
testcase_05 AC 167 ms
64,568 KB
testcase_06 AC 168 ms
60,120 KB
testcase_07 AC 213 ms
70,124 KB
testcase_08 AC 176 ms
64,680 KB
testcase_09 AC 321 ms
80,364 KB
testcase_10 AC 305 ms
80,552 KB
testcase_11 AC 309 ms
79,944 KB
testcase_12 AC 311 ms
80,688 KB
testcase_13 AC 317 ms
80,548 KB
testcase_14 AC 109 ms
61,372 KB
testcase_15 AC 110 ms
60,812 KB
testcase_16 AC 143 ms
61,144 KB
testcase_17 AC 122 ms
61,556 KB
testcase_18 AC 136 ms
60,460 KB
testcase_19 AC 40 ms
52,324 KB
testcase_20 AC 38 ms
53,108 KB
testcase_21 AC 39 ms
51,772 KB
testcase_22 AC 39 ms
52,016 KB
testcase_23 AC 39 ms
52,620 KB
testcase_24 AC 39 ms
53,104 KB
testcase_25 AC 40 ms
53,936 KB
testcase_26 AC 39 ms
52,916 KB
testcase_27 AC 39 ms
52,956 KB
testcase_28 AC 40 ms
52,080 KB
testcase_29 AC 39 ms
52,268 KB
testcase_30 AC 307 ms
80,480 KB
testcase_31 AC 333 ms
80,472 KB
testcase_32 AC 248 ms
69,984 KB
testcase_33 AC 368 ms
80,964 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