結果

問題 No.393 2本の竹
ユーザー 37zigen37zigen
提出日時 2016-07-03 20:38:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 341 ms / 1,000 ms
コード長 1,003 bytes
コンパイル時間 2,712 ms
コンパイル使用メモリ 77,512 KB
実行使用メモリ 46,504 KB
最終ジャッジ日時 2024-11-08 05:30:17
合計ジャッジ時間 9,722 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 185 ms
45,700 KB
testcase_01 AC 151 ms
45,104 KB
testcase_02 AC 165 ms
45,716 KB
testcase_03 AC 163 ms
45,588 KB
testcase_04 AC 153 ms
45,632 KB
testcase_05 AC 155 ms
45,624 KB
testcase_06 AC 153 ms
45,492 KB
testcase_07 AC 185 ms
45,928 KB
testcase_08 AC 212 ms
46,212 KB
testcase_09 AC 326 ms
46,396 KB
testcase_10 AC 246 ms
45,988 KB
testcase_11 AC 267 ms
46,504 KB
testcase_12 AC 238 ms
46,320 KB
testcase_13 AC 236 ms
46,008 KB
testcase_14 AC 200 ms
45,928 KB
testcase_15 AC 176 ms
43,868 KB
testcase_16 AC 197 ms
45,408 KB
testcase_17 AC 167 ms
45,760 KB
testcase_18 AC 159 ms
45,664 KB
testcase_19 AC 149 ms
44,928 KB
testcase_20 AC 151 ms
45,572 KB
testcase_21 AC 166 ms
45,448 KB
testcase_22 AC 220 ms
46,028 KB
testcase_23 AC 212 ms
45,828 KB
testcase_24 AC 180 ms
45,932 KB
testcase_25 AC 185 ms
45,860 KB
testcase_26 AC 151 ms
44,820 KB
testcase_27 AC 341 ms
46,428 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