結果

問題 No.393 2本の竹
ユーザー 37zigen37zigen
提出日時 2016-07-03 20:38:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 285 ms / 1,000 ms
コード長 1,003 bytes
コンパイル時間 2,457 ms
コンパイル使用メモリ 77,740 KB
実行使用メモリ 58,048 KB
最終ジャッジ日時 2024-04-25 18:05:30
合計ジャッジ時間 7,925 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 174 ms
57,200 KB
testcase_01 AC 135 ms
57,064 KB
testcase_02 AC 137 ms
56,724 KB
testcase_03 AC 143 ms
56,928 KB
testcase_04 AC 136 ms
57,076 KB
testcase_05 AC 149 ms
56,604 KB
testcase_06 AC 134 ms
56,996 KB
testcase_07 AC 154 ms
57,004 KB
testcase_08 AC 177 ms
57,444 KB
testcase_09 AC 285 ms
58,004 KB
testcase_10 AC 194 ms
57,480 KB
testcase_11 AC 247 ms
57,456 KB
testcase_12 AC 223 ms
57,876 KB
testcase_13 AC 214 ms
57,424 KB
testcase_14 AC 181 ms
57,636 KB
testcase_15 AC 165 ms
56,136 KB
testcase_16 AC 165 ms
57,372 KB
testcase_17 AC 135 ms
56,548 KB
testcase_18 AC 136 ms
57,124 KB
testcase_19 AC 130 ms
57,124 KB
testcase_20 AC 139 ms
56,816 KB
testcase_21 AC 150 ms
56,736 KB
testcase_22 AC 202 ms
57,200 KB
testcase_23 AC 196 ms
58,048 KB
testcase_24 AC 168 ms
57,280 KB
testcase_25 AC 162 ms
57,072 KB
testcase_26 AC 131 ms
56,844 KB
testcase_27 AC 269 ms
57,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

	public static void main(String[] args) {
		int d = sc.nextInt();
		for(;d>0;d--){
			new Main().solver();
		}
	}

	void solver() {
		int n1 = sc.nextInt();
		int 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);
		

		boolean[] from = new boolean[n1 + 1];
		from[0] = true;
		int len = 0;
		for (int i = 0; i < m; i++) {
			boolean[] to = new boolean[100001];
			boolean f=false;
			for (int j = 0; j <= n1; j++) {
				if (from[j]) {
					if (j + a[i] <= n1) {
						to[j + a[i]] = true;
						f=true;
					}
					if ((len - j) + a[i] <= n2) {
						to[j] = true;
						f=true;
					}
				}
			}

			len+=a[i];
			from=to;

			if(!f){
				System.out.println(i);
				return;
			}
		}
		System.out.println(m);
	}
	
	void tr(Object...o){System.out.println(Arrays.deepToString(o));}
}
0