結果

問題 No.2005 Sum of Power Sums
ユーザー miztommiztom
提出日時 2024-03-15 03:19:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 99,728 KB
最終ジャッジ日時 2024-09-29 23:56:51
合計ジャッジ時間 6,521 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
76,664 KB
testcase_01 AC 228 ms
76,772 KB
testcase_02 AC 227 ms
77,288 KB
testcase_03 AC 250 ms
76,864 KB
testcase_04 AC 227 ms
76,644 KB
testcase_05 AC 249 ms
76,804 KB
testcase_06 AC 228 ms
76,588 KB
testcase_07 AC 228 ms
76,996 KB
testcase_08 AC 228 ms
77,076 KB
testcase_09 AC 226 ms
76,572 KB
testcase_10 AC 230 ms
76,788 KB
testcase_11 AC 234 ms
77,276 KB
testcase_12 AC 269 ms
76,916 KB
testcase_13 AC 272 ms
77,016 KB
testcase_14 AC 264 ms
98,460 KB
testcase_15 AC 307 ms
99,652 KB
testcase_16 AC 310 ms
99,264 KB
testcase_17 AC 308 ms
99,728 KB
testcase_18 AC 263 ms
76,528 KB
testcase_19 AC 265 ms
77,052 KB
testcase_20 AC 305 ms
99,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=998244353
n,m=map(int,input().split())
m%=M
a=b=1
for i in range(n):a,b=a*(n+m-i)%M,b*-~i%M
a=[a,0]
r=[a[0]]+[sum(a:=[(a[j-1]*(i-j)%M*(n+m+j)+a[j]*(j+1)%M*(m+j-i+1))%M for j in range(i+1)]+[0])*pow(b:=b*(n+i)%M,-1,M)%M for i in range(1,5001)]
print(sum(r[int(i)]for i in input().split())%M)
0