結果

問題 No.2944 Sigma Partition Problem
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-10-05 21:41:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,374 ms / 4,000 ms
コード長 244 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 253,440 KB
最終ジャッジ日時 2024-10-08 23:16:47
合計ジャッジ時間 37,048 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,315 ms
253,056 KB
testcase_01 AC 1,364 ms
253,440 KB
testcase_02 AC 1,302 ms
253,208 KB
testcase_03 AC 1,317 ms
253,056 KB
testcase_04 AC 1,311 ms
252,928 KB
testcase_05 AC 1,318 ms
252,928 KB
testcase_06 AC 1,305 ms
253,056 KB
testcase_07 AC 1,307 ms
252,928 KB
testcase_08 AC 1,328 ms
252,928 KB
testcase_09 AC 1,318 ms
252,800 KB
testcase_10 AC 1,307 ms
252,928 KB
testcase_11 AC 1,365 ms
253,056 KB
testcase_12 AC 1,330 ms
252,800 KB
testcase_13 AC 1,374 ms
253,004 KB
testcase_14 AC 1,334 ms
253,056 KB
testcase_15 AC 1,325 ms
252,928 KB
testcase_16 AC 1,363 ms
252,928 KB
testcase_17 AC 1,329 ms
253,072 KB
testcase_18 AC 1,325 ms
253,340 KB
testcase_19 AC 1,327 ms
252,800 KB
testcase_20 AC 1,328 ms
252,800 KB
testcase_21 AC 1,310 ms
253,076 KB
testcase_22 AC 1,345 ms
252,928 KB
testcase_23 AC 1,309 ms
253,056 KB
testcase_24 AC 1,314 ms
252,800 KB
testcase_25 AC 1,342 ms
253,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=998244353
Q=int(input())
dp=[[0]*5000 for i in range(5000)]
dp[0]=[1]*5000
for i in range(1,5000):
	for j in range(1,5000):
		dp[i][j]=dp[i-j][j]+dp[i][j-1]
		dp[i][j]%=MOD
for i in range(Q):
	t,n,k=map(int,input().split())
	print(dp[n][k])
0