結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
63,616 KB
testcase_01 AC 54 ms
63,488 KB
testcase_02 AC 53 ms
63,872 KB
testcase_03 AC 488 ms
69,760 KB
testcase_04 AC 502 ms
69,376 KB
testcase_05 AC 273 ms
69,376 KB
testcase_06 AC 276 ms
68,608 KB
testcase_07 AC 340 ms
69,248 KB
testcase_08 AC 293 ms
69,248 KB
testcase_09 AC 495 ms
69,504 KB
testcase_10 AC 466 ms
69,120 KB
testcase_11 AC 471 ms
69,248 KB
testcase_12 AC 474 ms
69,504 KB
testcase_13 AC 478 ms
69,376 KB
testcase_14 AC 150 ms
67,072 KB
testcase_15 AC 149 ms
66,560 KB
testcase_16 AC 218 ms
67,584 KB
testcase_17 AC 184 ms
67,712 KB
testcase_18 AC 211 ms
67,328 KB
testcase_19 AC 55 ms
64,384 KB
testcase_20 AC 57 ms
64,000 KB
testcase_21 AC 56 ms
63,488 KB
testcase_22 AC 56 ms
63,616 KB
testcase_23 AC 56 ms
63,872 KB
testcase_24 AC 57 ms
64,000 KB
testcase_25 AC 55 ms
63,616 KB
testcase_26 AC 56 ms
63,872 KB
testcase_27 AC 56 ms
63,872 KB
testcase_28 AC 56 ms
63,488 KB
testcase_29 AC 55 ms
64,000 KB
testcase_30 AC 492 ms
70,144 KB
testcase_31 AC 541 ms
69,760 KB
testcase_32 AC 420 ms
70,528 KB
testcase_33 AC 599 ms
70,528 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