結果

問題 No.617 Nafmo、買い出しに行く
ユーザー tentententen
提出日時 2020-09-07 14:16:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 2,855 ms
コンパイル使用メモリ 84,256 KB
実行使用メモリ 56,460 KB
最終ジャッジ日時 2024-11-29 10:42:50
合計ジャッジ時間 6,668 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,832 KB
testcase_01 AC 108 ms
52,988 KB
testcase_02 AC 118 ms
53,164 KB
testcase_03 AC 136 ms
53,744 KB
testcase_04 AC 125 ms
53,924 KB
testcase_05 AC 153 ms
53,808 KB
testcase_06 AC 168 ms
56,148 KB
testcase_07 AC 178 ms
56,460 KB
testcase_08 AC 108 ms
53,008 KB
testcase_09 AC 106 ms
52,948 KB
testcase_10 AC 153 ms
55,552 KB
testcase_11 AC 167 ms
56,072 KB
testcase_12 AC 154 ms
53,644 KB
testcase_13 AC 129 ms
53,236 KB
testcase_14 AC 137 ms
53,204 KB
testcase_15 AC 120 ms
53,856 KB
testcase_16 AC 121 ms
53,980 KB
testcase_17 AC 106 ms
52,928 KB
testcase_18 AC 115 ms
53,812 KB
testcase_19 AC 118 ms
53,904 KB
testcase_20 AC 98 ms
52,652 KB
testcase_21 AC 104 ms
52,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt();
    	int k = sc.nextInt();
    	boolean[] sums = new boolean[k + 1];
    	sums[0] = true;
    	for (int i = 0; i < n; i++) {
    	    int x = sc.nextInt();
    	    for (int j = k - x; j >= 0; j--) {
    	        if (sums[j]) {
    	            sums[j + x] = true;
    	        }
    	    }
    	}
    	for (int i = k; i >= 0; i--) {
    	    if (sums[i]) {
    	        System.out.println(i);
    	        return;
    	    }
    	}
   }
}
0