結果

問題 No.1703 Much Matching
ユーザー tailstails
提出日時 2021-10-08 22:30:21
言語 cLay
(20240714-1)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 2,883 ms
コンパイル使用メモリ 174,404 KB
実行使用メモリ 13,360 KB
最終ジャッジ日時 2024-07-23 05:14:06
合計ジャッジ時間 4,648 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 4 ms
9,916 KB
testcase_04 AC 4 ms
10,052 KB
testcase_05 AC 5 ms
11,440 KB
testcase_06 AC 9 ms
10,300 KB
testcase_07 AC 4 ms
12,232 KB
testcase_08 AC 11 ms
12,880 KB
testcase_09 AC 12 ms
13,248 KB
testcase_10 AC 5 ms
8,336 KB
testcase_11 AC 7 ms
12,160 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 7 ms
13,080 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 6 ms
12,868 KB
testcase_16 AC 7 ms
9,276 KB
testcase_17 AC 8 ms
13,212 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 13 ms
11,152 KB
testcase_20 AC 4 ms
7,920 KB
testcase_21 AC 16 ms
12,500 KB
testcase_22 AC 9 ms
13,360 KB
testcase_23 AC 8 ms
13,144 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 4 ms
8,156 KB
testcase_26 AC 7 ms
12,648 KB
testcase_27 AC 9 ms
12,876 KB
testcase_28 AC 14 ms
13,200 KB
testcase_29 AC 6 ms
11,088 KB
testcase_30 AC 7 ms
12,412 KB
testcase_31 AC 4 ms
12,108 KB
testcase_32 AC 9 ms
11,144 KB
testcase_33 AC 8 ms
12,828 KB
testcase_34 AC 3 ms
6,940 KB
testcase_35 AC 5 ms
10,448 KB
testcase_36 AC 27 ms
12,500 KB
testcase_37 AC 5 ms
11,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll d[1001][1001];
{
	ll@n,@m,@q;
	rep(q){
		ll@a,@b;
		d[a][b]=1;
	}
	rep(x,1,n+1){
		rep(y,1,m+1){
			d[x][y]=max(d[x-1][y-1]+d[x][y],d[x-1][y],d[x][y-1]);
		}
	}
	wt(d[n][m]);
}
0