結果

問題 No.393 2本の竹
ユーザー sekiya9311sekiya9311
提出日時 2016-08-26 15:36:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 475 ms / 1,000 ms
コード長 948 bytes
コンパイル時間 4,477 ms
コンパイル使用メモリ 77,772 KB
実行使用メモリ 90,804 KB
最終ジャッジ日時 2024-11-08 09:28:42
合計ジャッジ時間 11,314 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 179 ms
42,028 KB
testcase_01 AC 138 ms
41,652 KB
testcase_02 AC 151 ms
41,716 KB
testcase_03 AC 156 ms
41,880 KB
testcase_04 AC 143 ms
41,380 KB
testcase_05 AC 152 ms
41,168 KB
testcase_06 AC 140 ms
41,544 KB
testcase_07 AC 179 ms
42,500 KB
testcase_08 AC 189 ms
42,820 KB
testcase_09 AC 475 ms
90,804 KB
testcase_10 AC 245 ms
57,148 KB
testcase_11 AC 274 ms
59,472 KB
testcase_12 AC 276 ms
58,328 KB
testcase_13 AC 243 ms
51,552 KB
testcase_14 AC 218 ms
52,460 KB
testcase_15 AC 197 ms
55,484 KB
testcase_16 AC 245 ms
63,308 KB
testcase_17 AC 164 ms
42,016 KB
testcase_18 AC 152 ms
41,592 KB
testcase_19 AC 130 ms
40,192 KB
testcase_20 AC 148 ms
41,664 KB
testcase_21 AC 164 ms
42,148 KB
testcase_22 AC 301 ms
62,500 KB
testcase_23 AC 259 ms
55,768 KB
testcase_24 AC 181 ms
43,464 KB
testcase_25 AC 162 ms
42,196 KB
testcase_26 AC 138 ms
41,684 KB
testcase_27 AC 422 ms
76,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Yuki393 {
	static Scanner sc = new Scanner(System.in);

	public static void main(String[] args) {
		int d = sc.nextInt();
		for (int i = 0; i < d; i++) {
			System.out.println(solve());
		}
	}

	static int solve() {
		int n1, n2;
		n1 = sc.nextInt();
		n2 = sc.nextInt();
		int m = sc.nextInt();
		int[] A = new int[m];
		for (int i = 0; i < m; i++) {
			A[i] = sc.nextInt();
		}
		Arrays.sort(A);
		int[][] dp = new int[m + 1][n1 + 1];
		for (int i = 0; i < m + 1; i++) {
			Arrays.fill(dp[i], -1);
		}
		dp[0][n1] = n2;
		for (int i = 0; i < m; i++) {
			boolean f = false;
			for (int j = 0; j < dp[i].length; j++) {
				if (dp[i][j] == -1)
					continue;
				if (dp[i][j] - A[i] >= 0) {
					dp[i + 1][j] = dp[i][j] - A[i];
					f = true;
				}
				if (j - A[i] >= 0) {
					dp[i + 1][j - A[i]] = dp[i][j];
					f = true;
				}
			}
			if (!f)
				return i;
		}
		return m;
	}
}
0