結果

問題 No.617 Nafmo、買い出しに行く
ユーザー 37zigen37zigen
提出日時 2017-12-05 00:17:18
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,015 bytes
コンパイル時間 2,528 ms
コンパイル使用メモリ 79,308 KB
実行使用メモリ 54,288 KB
最終ジャッジ日時 2024-05-06 03:48:18
合計ジャッジ時間 6,777 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,016 KB
testcase_01 AC 126 ms
41,036 KB
testcase_02 AC 126 ms
40,968 KB
testcase_03 AC 148 ms
41,340 KB
testcase_04 AC 124 ms
41,428 KB
testcase_05 AC 143 ms
41,668 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 126 ms
41,340 KB
testcase_09 AC 121 ms
40,996 KB
testcase_10 AC 194 ms
41,460 KB
testcase_11 AC 213 ms
41,616 KB
testcase_12 AC 208 ms
41,436 KB
testcase_13 AC 218 ms
41,356 KB
testcase_14 AC 225 ms
41,288 KB
testcase_15 AC 202 ms
41,636 KB
testcase_16 AC 219 ms
41,528 KB
testcase_17 RE -
testcase_18 AC 128 ms
41,224 KB
testcase_19 AC 112 ms
41,420 KB
testcase_20 AC 127 ms
41,048 KB
testcase_21 AC 123 ms
41,500 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];
		HashSet<Integer> set = new HashSet<>();
		for (int i = 0; i < N; ++i) {
			A[i] = sc.nextInt();
			if (set.contains(A[i]))
				throw new AssertionError();
			set.add(A[i]);
			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