結果

問題 No.1897 Sum of 2nd Max
ユーザー titiatitia
提出日時 2022-04-09 00:05:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 642 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 103,528 KB
最終ジャッジ日時 2024-11-28 15:30:28
合計ジャッジ時間 10,936 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
88,320 KB
testcase_01 AC 74 ms
88,320 KB
testcase_02 AC 70 ms
88,320 KB
testcase_03 AC 548 ms
103,528 KB
testcase_04 AC 550 ms
103,296 KB
testcase_05 AC 304 ms
103,040 KB
testcase_06 AC 308 ms
103,072 KB
testcase_07 AC 376 ms
103,424 KB
testcase_08 AC 324 ms
103,168 KB
testcase_09 AC 545 ms
103,040 KB
testcase_10 AC 509 ms
103,168 KB
testcase_11 AC 523 ms
103,248 KB
testcase_12 AC 520 ms
103,228 KB
testcase_13 AC 529 ms
103,084 KB
testcase_14 AC 181 ms
102,876 KB
testcase_15 AC 181 ms
102,912 KB
testcase_16 AC 251 ms
103,424 KB
testcase_17 AC 222 ms
103,296 KB
testcase_18 AC 245 ms
103,040 KB
testcase_19 AC 68 ms
88,448 KB
testcase_20 AC 67 ms
88,576 KB
testcase_21 AC 68 ms
88,320 KB
testcase_22 AC 67 ms
88,448 KB
testcase_23 AC 67 ms
88,576 KB
testcase_24 AC 67 ms
88,576 KB
testcase_25 AC 68 ms
88,576 KB
testcase_26 AC 69 ms
88,320 KB
testcase_27 AC 67 ms
88,832 KB
testcase_28 AC 68 ms
88,320 KB
testcase_29 AC 68 ms
88,192 KB
testcase_30 AC 536 ms
103,248 KB
testcase_31 AC 558 ms
102,912 KB
testcase_32 AC 449 ms
103,272 KB
testcase_33 AC 642 ms
103,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

FACT=[1]
for i in range(1,2*10**5+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(2*10**5,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]%mod*FACT_INV[a-b]%mod
    else:
        return 0


ANS=0

for x in range(1,K+1):
    ANS+=x*N*(K-x)*(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

    ANS%=mod

print(ANS)
0