結果

問題 No.617 Nafmo、買い出しに行く
ユーザー 37zigen37zigen
提出日時 2017-12-05 00:11:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 765 bytes
コンパイル時間 3,027 ms
コンパイル使用メモリ 77,336 KB
実行使用メモリ 43,464 KB
最終ジャッジ日時 2024-05-06 03:28:14
合計ジャッジ時間 6,326 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
42,288 KB
testcase_01 AC 129 ms
42,952 KB
testcase_02 AC 141 ms
43,316 KB
testcase_03 AC 151 ms
43,300 KB
testcase_04 AC 129 ms
42,520 KB
testcase_05 AC 155 ms
42,828 KB
testcase_06 AC 151 ms
42,316 KB
testcase_07 AC 166 ms
43,164 KB
testcase_08 AC 117 ms
42,012 KB
testcase_09 AC 133 ms
42,996 KB
testcase_10 AC 147 ms
42,464 KB
testcase_11 AC 157 ms
43,232 KB
testcase_12 AC 145 ms
42,204 KB
testcase_13 AC 148 ms
42,424 KB
testcase_14 AC 160 ms
43,448 KB
testcase_15 AC 162 ms
43,112 KB
testcase_16 AC 155 ms
43,344 KB
testcase_17 AC 172 ms
43,080 KB
testcase_18 AC 108 ms
42,168 KB
testcase_19 AC 125 ms
43,116 KB
testcase_20 AC 134 ms
43,464 KB
testcase_21 AC 136 ms
43,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package tmp;

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

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int K = sc.nextInt();
		int[] A = new int[N];
		for (int i = 0; i < N; ++i) {
			A[i] = sc.nextInt();
		}
		Arrays.sort(A);
		boolean[] f = new boolean[20 * 100000 + 1];
		f[0] = true;
		for (int i = 0; i < N; ++i) {
			for (int j = f.length - 1; j >= 0; --j) {
				if (f[j]) {
					f[j + A[i]] = true;
				}
			}
		}
		for (int i = K; i >= 0; --i) {
			if (f[i]) {
				System.out.println(i);
				return;
			}
		}
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0