結果

問題 No.617 Nafmo、買い出しに行く
ユーザー GrenacheGrenache
提出日時 2017-12-17 00:16:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 3,703 ms
コンパイル使用メモリ 74,864 KB
実行使用メモリ 41,572 KB
最終ジャッジ日時 2024-05-08 17:03:15
合計ジャッジ時間 8,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,160 KB
testcase_01 AC 122 ms
41,064 KB
testcase_02 AC 109 ms
40,200 KB
testcase_03 AC 144 ms
41,292 KB
testcase_04 AC 124 ms
41,460 KB
testcase_05 AC 124 ms
40,188 KB
testcase_06 AC 204 ms
41,168 KB
testcase_07 AC 203 ms
41,224 KB
testcase_08 AC 109 ms
40,328 KB
testcase_09 AC 122 ms
41,216 KB
testcase_10 AC 213 ms
41,316 KB
testcase_11 AC 200 ms
40,440 KB
testcase_12 AC 198 ms
41,316 KB
testcase_13 AC 193 ms
40,844 KB
testcase_14 AC 199 ms
41,572 KB
testcase_15 AC 215 ms
40,808 KB
testcase_16 AC 198 ms
41,332 KB
testcase_17 AC 225 ms
41,104 KB
testcase_18 AC 124 ms
41,408 KB
testcase_19 AC 126 ms
41,304 KB
testcase_20 AC 125 ms
41,108 KB
testcase_21 AC 111 ms
40,300 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