結果

問題 No.2839 AND Constraint
ユーザー ygussanyygussany
提出日時 2024-08-03 11:13:34
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 699 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 30,848 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-03 11:13:36
合計ジャッジ時間 2,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 44 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 140 ms
6,944 KB
testcase_07 AC 120 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 7 ms
6,940 KB
testcase_11 AC 18 ms
6,944 KB
testcase_12 AC 45 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 23 ms
6,940 KB
testcase_15 AC 10 ms
6,940 KB
testcase_16 AC 48 ms
6,944 KB
testcase_17 AC 13 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 6 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

const int Mod = 998244353;
long long memo[501][501];

long long recursion(int N, int M)
{
	if (memo[N][M] >= 0) return memo[N][M];
	else memo[N][M] = 0;
	
	int i;
	memo[N][M] += recursion(N - 1, 0) * (recursion(N - 1, M) + recursion(N - 1, M - 1)) % Mod;
	for (i = 1; i < M; i++) memo[N][M] += recursion(N - 1, i) * recursion(N - 1, M - i - 1) % Mod;
	memo[N][M] %= Mod;
	return memo[N][M];
}

int main()
{
	int N, M;
	scanf("%d %d", &N, &M);
	
	int i, j;
	for (i = 0; i <= N; i++) for (j = 1, memo[i][0] = 1; j <= M; j++) memo[i][j] = -1;
	for (j = 2, memo[1][0] = 1, memo[1][1] = 1; j <= M; j++) memo[1][j] = 0;
	printf("%lld\n", recursion(N, M));
	fflush(stdout);
	return 0;
}
0