結果

問題 No.617 Nafmo、買い出しに行く
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-14 08:32:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 3,169 ms
コンパイル使用メモリ 74,756 KB
実行使用メモリ 369,024 KB
最終ジャッジ日時 2024-12-17 19:26:14
合計ジャッジ時間 11,323 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
366,592 KB
testcase_01 AC 258 ms
366,324 KB
testcase_02 AC 300 ms
366,676 KB
testcase_03 AC 325 ms
367,048 KB
testcase_04 AC 297 ms
368,408 KB
testcase_05 AC 394 ms
366,496 KB
testcase_06 AC 464 ms
366,888 KB
testcase_07 AC 458 ms
368,780 KB
testcase_08 AC 270 ms
368,860 KB
testcase_09 AC 267 ms
368,660 KB
testcase_10 AC 410 ms
368,888 KB
testcase_11 AC 405 ms
368,996 KB
testcase_12 AC 372 ms
369,024 KB
testcase_13 AC 337 ms
368,832 KB
testcase_14 AC 345 ms
369,020 KB
testcase_15 AC 269 ms
368,264 KB
testcase_16 AC 285 ms
368,996 KB
testcase_17 AC 261 ms
367,780 KB
testcase_18 AC 261 ms
368,776 KB
testcase_19 AC 271 ms
368,920 KB
testcase_20 AC 256 ms
367,796 KB
testcase_21 AC 267 ms
368,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No617 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt(); // 荷物の個数
		int K = sc.nextInt(); // 持てる重さの最大値
		int weight[] = new int[30]; //各荷物の重さ(=価値)
		int dp[][] = new int[30][2000010];
		for(int i = 0;i < N;i++) {
			weight[i] = sc.nextInt();
		}
		//初期化 入力
		
		for(int i = 0;i <= K;i++) {
			dp[0][i] = 0;
		}
		
		for(int i = 0;i < N;i++) {
			for(int j = 0;j <= K;j++) {
				if(j >= weight[i]) {
					dp[i+1][j] = Math.max(dp[i][j - weight[i]] + weight[i],dp[i][j]);
				}else {
					dp[i+1][j] = dp[i][j];
				}
			}
		}
		
		System.out.println(dp[N][K]);
	}
}
0