結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
88,192 KB
testcase_01 AC 64 ms
88,192 KB
testcase_02 AC 64 ms
88,192 KB
testcase_03 AC 537 ms
103,096 KB
testcase_04 AC 549 ms
103,388 KB
testcase_05 AC 304 ms
103,064 KB
testcase_06 AC 305 ms
103,188 KB
testcase_07 AC 376 ms
103,168 KB
testcase_08 AC 322 ms
103,440 KB
testcase_09 AC 541 ms
103,168 KB
testcase_10 AC 508 ms
103,372 KB
testcase_11 AC 522 ms
103,168 KB
testcase_12 AC 518 ms
103,088 KB
testcase_13 AC 526 ms
103,168 KB
testcase_14 AC 183 ms
103,108 KB
testcase_15 AC 181 ms
103,040 KB
testcase_16 AC 252 ms
103,300 KB
testcase_17 AC 221 ms
103,128 KB
testcase_18 AC 245 ms
103,296 KB
testcase_19 AC 66 ms
88,320 KB
testcase_20 AC 65 ms
88,576 KB
testcase_21 AC 65 ms
88,320 KB
testcase_22 AC 65 ms
88,448 KB
testcase_23 AC 66 ms
88,320 KB
testcase_24 AC 66 ms
88,448 KB
testcase_25 AC 65 ms
88,704 KB
testcase_26 AC 67 ms
88,420 KB
testcase_27 AC 67 ms
88,576 KB
testcase_28 AC 67 ms
88,832 KB
testcase_29 AC 67 ms
88,320 KB
testcase_30 AC 537 ms
103,124 KB
testcase_31 AC 559 ms
103,084 KB
testcase_32 AC 449 ms
103,160 KB
testcase_33 AC 643 ms
103,040 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