結果

問題 No.1897 Sum of 2nd Max
ユーザー とりゐとりゐ
提出日時 2022-04-08 21:46:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 531 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 73,820 KB
最終ジャッジ日時 2024-11-28 12:27:14
合計ジャッジ時間 8,085 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,208 KB
testcase_01 AC 33 ms
52,204 KB
testcase_02 AC 33 ms
51,996 KB
testcase_03 AC 443 ms
72,316 KB
testcase_04 AC 439 ms
70,016 KB
testcase_05 AC 227 ms
64,036 KB
testcase_06 AC 230 ms
62,836 KB
testcase_07 AC 295 ms
66,992 KB
testcase_08 AC 244 ms
63,948 KB
testcase_09 AC 458 ms
73,500 KB
testcase_10 AC 412 ms
72,156 KB
testcase_11 AC 419 ms
73,820 KB
testcase_12 AC 409 ms
72,428 KB
testcase_13 AC 419 ms
72,984 KB
testcase_14 AC 121 ms
62,052 KB
testcase_15 AC 120 ms
60,424 KB
testcase_16 AC 183 ms
61,264 KB
testcase_17 AC 156 ms
61,980 KB
testcase_18 AC 170 ms
60,900 KB
testcase_19 AC 32 ms
52,536 KB
testcase_20 AC 31 ms
52,416 KB
testcase_21 AC 34 ms
53,616 KB
testcase_22 AC 32 ms
52,440 KB
testcase_23 AC 33 ms
52,732 KB
testcase_24 AC 32 ms
52,236 KB
testcase_25 AC 32 ms
52,204 KB
testcase_26 AC 32 ms
52,480 KB
testcase_27 AC 31 ms
52,572 KB
testcase_28 AC 31 ms
53,368 KB
testcase_29 AC 30 ms
52,532 KB
testcase_30 AC 427 ms
73,704 KB
testcase_31 AC 461 ms
72,268 KB
testcase_32 AC 359 ms
66,920 KB
testcase_33 AC 531 ms
71,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for x in range(1,k+1):
  tmp=pow(x,n,mod)-n*pow(x-1,n-1,mod)-pow(x-1,n,mod)
  ans+=x*tmp%mod
  ans%=mod

print(ans)
0