結果

問題 No.2944 Sigma Partition Problem
ユーザー pengin_2000pengin_2000
提出日時 2024-10-19 00:07:05
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 152 ms / 4,000 ms
コード長 515 bytes
コンパイル時間 544 ms
コンパイル使用メモリ 29,696 KB
実行使用メモリ 127,056 KB
最終ジャッジ日時 2024-10-19 00:07:11
合計ジャッジ時間 4,764 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
126,924 KB
testcase_01 AC 125 ms
126,920 KB
testcase_02 AC 123 ms
127,056 KB
testcase_03 AC 126 ms
127,012 KB
testcase_04 AC 124 ms
126,972 KB
testcase_05 AC 131 ms
126,888 KB
testcase_06 AC 123 ms
126,964 KB
testcase_07 AC 129 ms
127,004 KB
testcase_08 AC 120 ms
126,852 KB
testcase_09 AC 125 ms
126,892 KB
testcase_10 AC 124 ms
126,928 KB
testcase_11 AC 124 ms
127,032 KB
testcase_12 AC 122 ms
126,896 KB
testcase_13 AC 124 ms
126,936 KB
testcase_14 AC 131 ms
126,884 KB
testcase_15 AC 125 ms
126,848 KB
testcase_16 AC 121 ms
127,032 KB
testcase_17 AC 125 ms
127,044 KB
testcase_18 AC 121 ms
127,028 KB
testcase_19 AC 126 ms
126,960 KB
testcase_20 AC 123 ms
126,896 KB
testcase_21 AC 122 ms
126,896 KB
testcase_22 AC 121 ms
126,972 KB
testcase_23 AC 152 ms
126,992 KB
testcase_24 AC 122 ms
127,024 KB
testcase_25 AC 124 ms
126,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
long long int s[4003][4003];
int main()
{
	long long int q;
	scanf("%lld", &q);
	long long int i, j;
	const long long int p = 998244353;
	for (i = 0; i < 4003; i++)
		s[0][i] = 1;
	for (i = 1; i < 4003; i++)
	{
		s[i][0] = 0;
		for (j = 1; j < 4003; j++)
		{
			if (i < j)
				s[i][j] = s[i][j - 1];
			else
				s[i][j] = (s[i][j - 1] + s[i - j][j]) % p;
		}
	}
	long long int t, n, k;
	for (i = 0; i < q; i++)
	{
		scanf("%lld %lld %lld", &t, &n, &k);
		printf("%lld\n", s[n][k]);
	}
	return 0;
}
0