結果

問題 No.617 Nafmo、買い出しに行く
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-14 08:32:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 587 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 3,116 ms
コンパイル使用メモリ 74,304 KB
実行使用メモリ 356,220 KB
最終ジャッジ日時 2024-05-10 00:28:44
合計ジャッジ時間 13,961 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 403 ms
355,152 KB
testcase_01 AC 380 ms
354,772 KB
testcase_02 AC 409 ms
355,012 KB
testcase_03 AC 446 ms
355,016 KB
testcase_04 AC 397 ms
354,980 KB
testcase_05 AC 475 ms
354,956 KB
testcase_06 AC 587 ms
355,936 KB
testcase_07 AC 578 ms
355,956 KB
testcase_08 AC 394 ms
356,148 KB
testcase_09 AC 391 ms
356,008 KB
testcase_10 AC 517 ms
354,760 KB
testcase_11 AC 524 ms
355,824 KB
testcase_12 AC 489 ms
356,220 KB
testcase_13 AC 453 ms
355,892 KB
testcase_14 AC 470 ms
355,932 KB
testcase_15 AC 398 ms
355,764 KB
testcase_16 AC 392 ms
354,900 KB
testcase_17 AC 382 ms
354,520 KB
testcase_18 AC 386 ms
355,624 KB
testcase_19 AC 389 ms
355,692 KB
testcase_20 AC 392 ms
355,676 KB
testcase_21 AC 395 ms
354,872 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