結果

問題 No.1897 Sum of 2nd Max
ユーザー siganaisiganai
提出日時 2022-04-09 18:43:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 532 ms / 2,000 ms
コード長 538 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 70,272 KB
最終ジャッジ日時 2024-11-29 19:54:44
合計ジャッジ時間 8,811 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,360 KB
testcase_01 AC 50 ms
63,616 KB
testcase_02 AC 49 ms
63,744 KB
testcase_03 AC 448 ms
69,248 KB
testcase_04 AC 453 ms
70,144 KB
testcase_05 AC 244 ms
69,632 KB
testcase_06 AC 250 ms
68,864 KB
testcase_07 AC 306 ms
69,632 KB
testcase_08 AC 262 ms
69,376 KB
testcase_09 AC 452 ms
69,120 KB
testcase_10 AC 416 ms
69,376 KB
testcase_11 AC 427 ms
69,632 KB
testcase_12 AC 421 ms
69,504 KB
testcase_13 AC 428 ms
69,504 KB
testcase_14 AC 136 ms
67,072 KB
testcase_15 AC 133 ms
66,304 KB
testcase_16 AC 190 ms
67,328 KB
testcase_17 AC 168 ms
67,200 KB
testcase_18 AC 190 ms
67,200 KB
testcase_19 AC 54 ms
63,744 KB
testcase_20 AC 49 ms
64,256 KB
testcase_21 AC 50 ms
63,872 KB
testcase_22 AC 49 ms
63,360 KB
testcase_23 AC 47 ms
63,232 KB
testcase_24 AC 47 ms
63,744 KB
testcase_25 AC 49 ms
63,744 KB
testcase_26 AC 50 ms
63,488 KB
testcase_27 AC 49 ms
63,744 KB
testcase_28 AC 49 ms
64,256 KB
testcase_29 AC 48 ms
63,488 KB
testcase_30 AC 436 ms
69,120 KB
testcase_31 AC 468 ms
69,376 KB
testcase_32 AC 369 ms
70,272 KB
testcase_33 AC 532 ms
70,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env PyPy3

from collections import Counter, defaultdict, deque
import itertools
import re
import math
from functools import reduce
import operator
import bisect
import heapq
import functools
mod=998244353

import sys
input=sys.stdin.readline

n,k=map(int,input().split())
ans = 0
ans2 = 0
for i in range(1,k+1):
    ans += i * n * (k - i) % mod * (pow(i,n-1,mod) - pow(i-1,n-1,mod)) % mod
    ans %= mod
    tmp = ((pow(i,n,mod) - pow(i-1,n,mod)) % mod - n * pow(i-1,n-1,mod)) % mod
    ans += i * tmp
    ans %= mod
print(ans)
0