結果

問題 No.1897 Sum of 2nd Max
ユーザー roarisroaris
提出日時 2022-04-22 15:36:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,888 KB
実行使用メモリ 77,304 KB
最終ジャッジ日時 2024-06-23 20:22:52
合計ジャッジ時間 5,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 239 ms
77,056 KB
testcase_04 AC 231 ms
75,008 KB
testcase_05 AC 132 ms
62,336 KB
testcase_06 AC 130 ms
61,056 KB
testcase_07 AC 166 ms
67,072 KB
testcase_08 AC 142 ms
62,208 KB
testcase_09 AC 246 ms
77,056 KB
testcase_10 AC 226 ms
77,056 KB
testcase_11 AC 230 ms
77,304 KB
testcase_12 AC 227 ms
77,024 KB
testcase_13 AC 232 ms
77,056 KB
testcase_14 AC 84 ms
60,928 KB
testcase_15 AC 84 ms
60,672 KB
testcase_16 AC 107 ms
61,184 KB
testcase_17 AC 96 ms
60,800 KB
testcase_18 AC 103 ms
61,056 KB
testcase_19 AC 39 ms
51,712 KB
testcase_20 AC 39 ms
51,840 KB
testcase_21 AC 40 ms
51,956 KB
testcase_22 AC 40 ms
51,840 KB
testcase_23 AC 40 ms
52,224 KB
testcase_24 AC 40 ms
51,968 KB
testcase_25 AC 39 ms
51,968 KB
testcase_26 AC 39 ms
51,584 KB
testcase_27 AC 39 ms
52,096 KB
testcase_28 AC 39 ms
52,480 KB
testcase_29 AC 40 ms
51,584 KB
testcase_30 AC 229 ms
77,056 KB
testcase_31 AC 248 ms
77,116 KB
testcase_32 AC 197 ms
65,920 KB
testcase_33 AC 280 ms
74,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
p = [0]*(K+1) # p[i]: second maxがi以下になる個数
MOD = 998244353

for i in range(1, K+1):
    p[i] = (pow(i, N, MOD)+N*(K-i)*pow(i, N-1, MOD))%MOD

ans = 0

for i in range(1, K+1):
    ans += (p[i]-p[i-1])*i%MOD
    ans %= MOD

print(ans)
0