結果

問題 No.617 Nafmo、買い出しに行く
ユーザー tentententen
提出日時 2020-09-07 14:16:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 176 ms / 2,000 ms
コード長 592 bytes
コンパイル時間 1,901 ms
コンパイル使用メモリ 74,460 KB
実行使用メモリ 43,296 KB
最終ジャッジ日時 2024-05-06 23:44:47
合計ジャッジ時間 5,856 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,796 KB
testcase_01 AC 121 ms
41,432 KB
testcase_02 AC 132 ms
41,620 KB
testcase_03 AC 143 ms
41,668 KB
testcase_04 AC 130 ms
41,388 KB
testcase_05 AC 139 ms
41,104 KB
testcase_06 AC 152 ms
42,172 KB
testcase_07 AC 176 ms
43,060 KB
testcase_08 AC 120 ms
41,268 KB
testcase_09 AC 120 ms
41,284 KB
testcase_10 AC 169 ms
42,768 KB
testcase_11 AC 163 ms
43,296 KB
testcase_12 AC 155 ms
42,308 KB
testcase_13 AC 126 ms
40,840 KB
testcase_14 AC 146 ms
42,144 KB
testcase_15 AC 105 ms
40,308 KB
testcase_16 AC 101 ms
39,792 KB
testcase_17 AC 110 ms
41,136 KB
testcase_18 AC 109 ms
41,116 KB
testcase_19 AC 107 ms
40,972 KB
testcase_20 AC 107 ms
40,608 KB
testcase_21 AC 110 ms
39,944 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