結果

問題 No.5 数字のブロック
ユーザー uafr_csuafr_cs
提出日時 2015-04-30 03:49:40
言語 Java
(openjdk 23)
結果
AC  
実行時間 387 ms / 5,000 ms
コード長 714 bytes
コンパイル時間 1,883 ms
コンパイル使用メモリ 74,312 KB
実行使用メモリ 58,720 KB
最終ジャッジ日時 2024-11-17 22:41:10
合計ジャッジ時間 10,290 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,104 KB
testcase_01 AC 126 ms
54,092 KB
testcase_02 AC 124 ms
53,936 KB
testcase_03 AC 323 ms
58,568 KB
testcase_04 AC 218 ms
57,272 KB
testcase_05 AC 358 ms
58,704 KB
testcase_06 AC 293 ms
58,592 KB
testcase_07 AC 308 ms
58,720 KB
testcase_08 AC 310 ms
58,700 KB
testcase_09 AC 229 ms
56,596 KB
testcase_10 AC 318 ms
58,700 KB
testcase_11 AC 284 ms
58,420 KB
testcase_12 AC 333 ms
58,596 KB
testcase_13 AC 302 ms
58,660 KB
testcase_14 AC 140 ms
53,796 KB
testcase_15 AC 140 ms
54,084 KB
testcase_16 AC 354 ms
58,448 KB
testcase_17 AC 360 ms
58,696 KB
testcase_18 AC 353 ms
58,576 KB
testcase_19 AC 387 ms
58,604 KB
testcase_20 AC 121 ms
53,716 KB
testcase_21 AC 118 ms
53,924 KB
testcase_22 AC 121 ms
54,060 KB
testcase_23 AC 124 ms
54,076 KB
testcase_24 AC 150 ms
54,060 KB
testcase_25 AC 194 ms
54,540 KB
testcase_26 AC 115 ms
53,672 KB
testcase_27 AC 126 ms
53,624 KB
testcase_28 AC 130 ms
54,088 KB
testcase_29 AC 219 ms
57,132 KB
testcase_30 AC 206 ms
56,632 KB
testcase_31 AC 106 ms
52,680 KB
testcase_32 AC 117 ms
53,916 KB
testcase_33 AC 119 ms
53,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		final int L = sc.nextInt();
		final int N = sc.nextInt();
		
		int[] ws = new int[N];
		for(int i = 0; i < N; i++){
			ws[i] = sc.nextInt();
		}
		
		int[] DP = new int[L + 1];
		Arrays.fill(DP, -1);
		DP[0] = 0;
		
		int max = Integer.MIN_VALUE;
		for(final int weight : ws){
			for(int current = L - weight; current >= 0; current--){
				if(DP[current] < 0){
					continue;
				}
				
				DP[weight + current] = Math.max(DP[weight + current], DP[current] + 1);
				max = Math.max(max, DP[weight + current]);
			}
		}
		
		System.out.println(max);
	}
	
}
0