結果

問題 No.2317 Expression Menu
ユーザー ks2mks2m
提出日時 2023-05-26 21:33:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 1,204 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 76,900 KB
実行使用メモリ 52,888 KB
最終ジャッジ日時 2024-06-07 05:50:05
合計ジャッジ時間 13,515 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,860 KB
testcase_01 AC 47 ms
37,172 KB
testcase_02 AC 99 ms
46,692 KB
testcase_03 AC 311 ms
52,452 KB
testcase_04 AC 297 ms
52,436 KB
testcase_05 AC 268 ms
52,252 KB
testcase_06 AC 279 ms
52,396 KB
testcase_07 AC 292 ms
52,464 KB
testcase_08 AC 291 ms
52,384 KB
testcase_09 AC 273 ms
52,572 KB
testcase_10 AC 276 ms
52,248 KB
testcase_11 AC 277 ms
52,320 KB
testcase_12 AC 282 ms
52,396 KB
testcase_13 AC 286 ms
52,552 KB
testcase_14 AC 286 ms
52,248 KB
testcase_15 AC 286 ms
52,544 KB
testcase_16 AC 298 ms
52,508 KB
testcase_17 AC 285 ms
52,552 KB
testcase_18 AC 317 ms
52,512 KB
testcase_19 AC 281 ms
52,452 KB
testcase_20 AC 280 ms
52,512 KB
testcase_21 AC 278 ms
52,448 KB
testcase_22 AC 295 ms
52,628 KB
testcase_23 AC 319 ms
52,616 KB
testcase_24 AC 315 ms
52,848 KB
testcase_25 AC 345 ms
52,888 KB
testcase_26 AC 331 ms
52,804 KB
testcase_27 AC 322 ms
52,684 KB
testcase_28 AC 329 ms
52,504 KB
testcase_29 AC 335 ms
52,424 KB
testcase_30 AC 327 ms
52,552 KB
testcase_31 AC 315 ms
52,876 KB
testcase_32 AC 335 ms
52,568 KB
testcase_33 AC 48 ms
37,004 KB
testcase_34 AC 51 ms
36,676 KB
testcase_35 AC 63 ms
38,612 KB
testcase_36 AC 47 ms
36,908 KB
testcase_37 AC 49 ms
37,072 KB
testcase_38 AC 354 ms
52,532 KB
testcase_39 AC 364 ms
52,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int x = Integer.parseInt(sa[1]);
		int y = Integer.parseInt(sa[2]);
		int[] a = new int[n];
		int[] b = new int[n];
		int[] c = new int[n];
		for (int i = 0; i < n; i++) {
			sa = br.readLine().split(" ");
			a[i] = Integer.parseInt(sa[0]);
			b[i] = Integer.parseInt(sa[1]);
			c[i] = Integer.parseInt(sa[2]);
		}
		br.close();

		long[][] dp = new long[x + 1][y + 1];
		for (int i = 0; i < n; i++) {
			long[][] wk = new long[x + 1][y + 1];
			for (int j = 0; j <= x; j++) {
				for (int j2 = 0; j2 <= y; j2++) {
					wk[j][j2] = Math.max(wk[j][j2], dp[j][j2]);
					int nj = j + a[i];
					int nj2 = j2 + b[i];
					if (nj <= x && nj2 <= y) {
						wk[nj][nj2] = Math.max(wk[nj][nj2], dp[j][j2] + c[i]);
					}
				}
			}
			dp = wk;
		}
		long ans = 0;
		for (int j = 0; j <= x; j++) {
			for (int j2 = 0; j2 <= y; j2++) {
				ans = Math.max(ans, dp[j][j2]);
			}
		}
		System.out.println(ans);
	}
}
0