結果

問題 No.617 Nafmo、買い出しに行く
ユーザー 37zigen37zigen
提出日時 2017-12-05 10:48:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 896 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 77,472 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-05-06 10:27:01
合計ジャッジ時間 6,371 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
39,752 KB
testcase_01 AC 100 ms
40,056 KB
testcase_02 AC 105 ms
40,120 KB
testcase_03 AC 129 ms
40,656 KB
testcase_04 AC 103 ms
40,044 KB
testcase_05 AC 132 ms
40,616 KB
testcase_06 AC 196 ms
40,592 KB
testcase_07 AC 186 ms
40,364 KB
testcase_08 AC 103 ms
39,720 KB
testcase_09 AC 105 ms
39,888 KB
testcase_10 AC 183 ms
40,196 KB
testcase_11 AC 196 ms
41,140 KB
testcase_12 AC 194 ms
40,080 KB
testcase_13 AC 188 ms
40,528 KB
testcase_14 AC 195 ms
40,044 KB
testcase_15 AC 195 ms
39,976 KB
testcase_16 AC 185 ms
40,080 KB
testcase_17 AC 201 ms
41,536 KB
testcase_18 AC 102 ms
39,816 KB
testcase_19 AC 107 ms
40,772 KB
testcase_20 AC 109 ms
40,104 KB
testcase_21 AC 114 ms
41,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package tester;

import java.util.Arrays;
import java.util.HashSet;
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();
		if (!(1 <= N && N <= 20))
			throw new AssertionError();
		if (!(0 <= K && K <= 2000000))
			throw new AssertionError();
		int[] A = new int[N];
		for (int i = 0; i < N; ++i) {
			A[i] = sc.nextInt();
			if (!(1 <= A[i] && A[i] <= 100000))
				throw new AssertionError();

		}
		int ans = 0;
		for (int s = 0; s < 1 << N; ++s) {
			int tmp = 0;
			for (int i = 0; i < N; ++i) {
				if ((s >> i) % 2 == 1) {
					tmp += A[i];
				}
			}
			if (tmp <= K) {
				ans = Math.max(ans, tmp);
			}
		}
		System.out.println(ans);
	}

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