結果

問題 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
コンパイル時間 171 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 69,000 KB
最終ジャッジ日時 2024-11-28 14:51:12
合計ジャッジ時間 9,444 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,128 KB
testcase_01 AC 34 ms
52,536 KB
testcase_02 AC 34 ms
53,628 KB
testcase_03 AC 498 ms
66,500 KB
testcase_04 AC 472 ms
67,256 KB
testcase_05 AC 291 ms
67,892 KB
testcase_06 AC 286 ms
66,768 KB
testcase_07 AC 350 ms
67,444 KB
testcase_08 AC 299 ms
67,948 KB
testcase_09 AC 537 ms
67,116 KB
testcase_10 AC 513 ms
67,564 KB
testcase_11 AC 503 ms
67,308 KB
testcase_12 AC 504 ms
68,548 KB
testcase_13 AC 516 ms
67,504 KB
testcase_14 AC 161 ms
62,676 KB
testcase_15 AC 154 ms
63,044 KB
testcase_16 AC 224 ms
63,764 KB
testcase_17 AC 176 ms
63,048 KB
testcase_18 AC 204 ms
64,252 KB
testcase_19 AC 36 ms
54,112 KB
testcase_20 AC 34 ms
52,180 KB
testcase_21 AC 33 ms
52,356 KB
testcase_22 AC 31 ms
52,860 KB
testcase_23 AC 32 ms
52,012 KB
testcase_24 AC 33 ms
53,948 KB
testcase_25 AC 31 ms
52,944 KB
testcase_26 AC 33 ms
53,220 KB
testcase_27 AC 33 ms
52,756 KB
testcase_28 AC 33 ms
52,272 KB
testcase_29 AC 32 ms
52,428 KB
testcase_30 AC 481 ms
67,464 KB
testcase_31 AC 554 ms
67,560 KB
testcase_32 AC 463 ms
68,852 KB
testcase_33 AC 645 ms
69,000 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