結果

問題 No.1897 Sum of 2nd Max
ユーザー tamatotamato
提出日時 2022-04-08 21:59:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 520 ms / 2,000 ms
コード長 410 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 68,096 KB
最終ジャッジ日時 2024-11-28 12:40:28
合計ジャッジ時間 8,545 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 444 ms
67,712 KB
testcase_04 AC 463 ms
64,896 KB
testcase_05 AC 236 ms
59,520 KB
testcase_06 AC 236 ms
59,008 KB
testcase_07 AC 300 ms
61,312 KB
testcase_08 AC 251 ms
59,264 KB
testcase_09 AC 442 ms
67,712 KB
testcase_10 AC 421 ms
67,712 KB
testcase_11 AC 428 ms
67,840 KB
testcase_12 AC 433 ms
67,968 KB
testcase_13 AC 439 ms
67,584 KB
testcase_14 AC 135 ms
58,880 KB
testcase_15 AC 139 ms
58,624 KB
testcase_16 AC 194 ms
59,008 KB
testcase_17 AC 160 ms
58,752 KB
testcase_18 AC 185 ms
58,752 KB
testcase_19 AC 40 ms
51,584 KB
testcase_20 AC 38 ms
52,352 KB
testcase_21 AC 39 ms
51,840 KB
testcase_22 AC 38 ms
51,712 KB
testcase_23 AC 38 ms
52,096 KB
testcase_24 AC 38 ms
51,712 KB
testcase_25 AC 38 ms
51,712 KB
testcase_26 AC 38 ms
51,816 KB
testcase_27 AC 38 ms
52,096 KB
testcase_28 AC 38 ms
51,456 KB
testcase_29 AC 38 ms
51,584 KB
testcase_30 AC 438 ms
67,712 KB
testcase_31 AC 453 ms
68,096 KB
testcase_32 AC 355 ms
60,544 KB
testcase_33 AC 520 ms
65,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    N, K = map(int, input().split())

    ans = 0
    for x in range(1, K+1):
        ans += ((x * N * (K - x))%mod * (pow(x, N - 1, mod) - pow(x - 1, N - 1, mod)))%mod
        ans += (x * (pow(x, N, mod) - pow(x-1, N, mod) - N * pow(x-1, N-1, mod))%mod)%mod
        ans %= mod
    print(ans)


if __name__ == '__main__':
    main()
0