結果

問題 No.2005 Sum of Power Sums
ユーザー miztommiztom
提出日時 2024-03-15 03:09:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,842 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 106,668 KB
最終ジャッジ日時 2024-09-29 23:56:43
合計ジャッジ時間 13,978 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 193 ms
76,648 KB
testcase_01 AC 195 ms
76,516 KB
testcase_02 AC 1,295 ms
81,544 KB
testcase_03 AC 204 ms
76,780 KB
testcase_04 AC 194 ms
76,644 KB
testcase_05 AC 202 ms
77,216 KB
testcase_06 AC 194 ms
76,652 KB
testcase_07 AC 198 ms
76,920 KB
testcase_08 AC 192 ms
76,840 KB
testcase_09 AC 197 ms
77,072 KB
testcase_10 AC 197 ms
77,192 KB
testcase_11 AC 201 ms
76,796 KB
testcase_12 AC 1,834 ms
83,484 KB
testcase_13 AC 1,775 ms
83,700 KB
testcase_14 AC 223 ms
98,400 KB
testcase_15 AC 1,842 ms
106,028 KB
testcase_16 AC 1,292 ms
104,320 KB
testcase_17 AC 1,805 ms
106,668 KB
testcase_18 AC 200 ms
77,256 KB
testcase_19 AC 203 ms
76,732 KB
testcase_20 AC 240 ms
99,396 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)*(n+m+j)%M+a[j]*(j+1)*(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