結果

問題 No.2944 Sigma Partition Problem
ユーザー hirayuu_ychirayuu_yc
提出日時 2024-10-05 21:42:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 937 ms / 4,000 ms
コード長 244 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 184,192 KB
最終ジャッジ日時 2024-10-08 23:16:43
合計ジャッジ時間 24,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 830 ms
184,192 KB
testcase_01 AC 849 ms
183,936 KB
testcase_02 AC 842 ms
183,808 KB
testcase_03 AC 847 ms
184,008 KB
testcase_04 AC 825 ms
183,936 KB
testcase_05 AC 837 ms
183,808 KB
testcase_06 AC 845 ms
183,552 KB
testcase_07 AC 838 ms
183,680 KB
testcase_08 AC 839 ms
183,552 KB
testcase_09 AC 937 ms
183,552 KB
testcase_10 AC 880 ms
184,192 KB
testcase_11 AC 890 ms
184,192 KB
testcase_12 AC 885 ms
183,936 KB
testcase_13 AC 884 ms
184,064 KB
testcase_14 AC 869 ms
184,064 KB
testcase_15 AC 897 ms
183,936 KB
testcase_16 AC 881 ms
183,936 KB
testcase_17 AC 893 ms
184,192 KB
testcase_18 AC 874 ms
183,808 KB
testcase_19 AC 892 ms
183,936 KB
testcase_20 AC 876 ms
183,552 KB
testcase_21 AC 915 ms
184,192 KB
testcase_22 AC 868 ms
184,192 KB
testcase_23 AC 886 ms
183,936 KB
testcase_24 AC 871 ms
183,680 KB
testcase_25 AC 908 ms
183,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD=998244353
Q=int(input())
dp=[[0]*4001 for i in range(4001)]
dp[0]=[1]*4001
for i in range(1,4001):
	for j in range(1,4001):
		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