結果

問題 No.1771 A DELETEQ
ユーザー XDXD
提出日時 2021-12-15 16:33:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 219 ms / 3,500 ms
コード長 529 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 168,636 KB
実行使用メモリ 66,304 KB
最終ジャッジ日時 2024-07-23 19:58:17
合計ジャッジ時間 13,185 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
23,936 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 219 ms
66,176 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 219 ms
66,304 KB
testcase_05 AC 215 ms
65,920 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 13 ms
19,712 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 40 ms
15,488 KB
testcase_10 AC 34 ms
21,504 KB
testcase_11 AC 26 ms
13,952 KB
testcase_12 AC 24 ms
14,976 KB
testcase_13 AC 32 ms
20,992 KB
testcase_14 AC 78 ms
32,768 KB
testcase_15 AC 109 ms
36,096 KB
testcase_16 AC 103 ms
45,824 KB
testcase_17 AC 14 ms
14,848 KB
testcase_18 AC 38 ms
14,592 KB
testcase_19 AC 5 ms
5,376 KB
testcase_20 AC 69 ms
37,248 KB
testcase_21 AC 15 ms
13,696 KB
testcase_22 AC 28 ms
15,616 KB
testcase_23 AC 38 ms
22,912 KB
testcase_24 AC 10 ms
7,936 KB
testcase_25 AC 5 ms
6,272 KB
testcase_26 AC 65 ms
24,784 KB
testcase_27 AC 24 ms
12,288 KB
testcase_28 AC 8 ms
6,528 KB
evil_hand_1.txt RE -
evil_hand_2.txt RE -
evil_hand_3.txt RE -
evil_random_1.txt RE -
evil_random_2.txt TLE -
evil_random_3.txt RE -
evil_random_4.txt RE -
evil_random_5.txt RE -
evil_random_6.txt RE -
evil_random_7.txt RE -
evil_random_8.txt RE -
evil_random_9.txt RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define forn(i,s,t) for(int i = (s); i <= (t); ++i)
using namespace std;
const int N = 4004, Mod = 998244353;
int f[N][N], n, m;
int main() {
	scanf("%d%d", &n, &m);
	f[0][0] = 1;
	forn (i, 0, n) forn (j, 0, m) if (i != 0 || j != 0) {
		if (i) f[i][j] += f[i - 1][j];
		if (j) f[i][j] += f[i][j - 1];
		f[i][j] %= Mod;
		if (i && j) f[i][j] += 2ll * f[i - 1][j - 1] % Mod;
		f[i][j] %= Mod;
	}
	int res = 0;
	forn (i, 0, min(n, m)) res = (res + f[n - i][m - i]) % Mod;
	printf("%d\n", res);
	return 0;
}
0