結果

問題 No.617 Nafmo、買い出しに行く
ユーザー GrenacheGrenache
提出日時 2017-12-17 00:16:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 247 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 3,820 ms
コンパイル使用メモリ 75,176 KB
実行使用メモリ 54,436 KB
最終ジャッジ日時 2024-12-14 22:33:40
合計ジャッジ時間 8,808 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,836 KB
testcase_01 AC 133 ms
54,340 KB
testcase_02 AC 136 ms
54,028 KB
testcase_03 AC 151 ms
54,436 KB
testcase_04 AC 133 ms
54,032 KB
testcase_05 AC 163 ms
54,060 KB
testcase_06 AC 224 ms
54,176 KB
testcase_07 AC 226 ms
54,080 KB
testcase_08 AC 135 ms
53,900 KB
testcase_09 AC 132 ms
54,076 KB
testcase_10 AC 226 ms
53,960 KB
testcase_11 AC 223 ms
54,260 KB
testcase_12 AC 214 ms
53,896 KB
testcase_13 AC 208 ms
54,068 KB
testcase_14 AC 212 ms
53,796 KB
testcase_15 AC 237 ms
53,960 KB
testcase_16 AC 213 ms
54,148 KB
testcase_17 AC 247 ms
54,000 KB
testcase_18 AC 134 ms
54,012 KB
testcase_19 AC 138 ms
53,928 KB
testcase_20 AC 136 ms
53,952 KB
testcase_21 AC 139 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;


public class Main_yukicoder617 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		int n = sc.nextInt();
		int k = sc.nextInt();

		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}

		int max = 0;
		for (int i = 0; i < 0x1 << n; i++) {
			int sum = 0;
			for (int j = 0; j < n; j++) {
				if ((i & 0x1 << j) != 0) {
					sum += a[j];
				}
			}

			if (sum <= k) {
				max = Math.max(max, sum);
			}
		}

		pr.println(max);
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);

		solve();

		pr.close();
		sc.close();
	}

	private static class Printer extends PrintWriter {
		Printer(PrintStream out) {
			super(out);
		}
	}
}
0