結果

問題 No.617 Nafmo、買い出しに行く
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-28 18:22:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 73,976 KB
実行使用メモリ 54,740 KB
最終ジャッジ日時 2024-06-01 09:02:00
合計ジャッジ時間 7,030 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,872 KB
testcase_01 AC 135 ms
54,200 KB
testcase_02 AC 136 ms
53,984 KB
testcase_03 AC 155 ms
54,196 KB
testcase_04 AC 134 ms
54,028 KB
testcase_05 AC 158 ms
54,232 KB
testcase_06 AC 236 ms
54,296 KB
testcase_07 AC 235 ms
54,740 KB
testcase_08 AC 136 ms
41,040 KB
testcase_09 AC 133 ms
41,368 KB
testcase_10 AC 233 ms
41,508 KB
testcase_11 AC 228 ms
41,108 KB
testcase_12 AC 239 ms
41,296 KB
testcase_13 AC 236 ms
41,508 KB
testcase_14 AC 240 ms
41,220 KB
testcase_15 AC 214 ms
40,260 KB
testcase_16 AC 237 ms
41,632 KB
testcase_17 AC 217 ms
40,484 KB
testcase_18 AC 134 ms
40,988 KB
testcase_19 AC 132 ms
41,508 KB
testcase_20 AC 118 ms
40,256 KB
testcase_21 AC 131 ms
41,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.System.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		int limit = sc.nextInt();
		int[] ar = new int[n];
		int max = 0;
		int temp;
		for (int i=0; i<n; i++) {
			ar[i] = sc.nextInt();
		}
		for (int i=1; i<(1<<n); i++) {
			temp = 0;
			for (int j=0; j<n; j++) {
				if ((1&i>>j)==1) {temp += ar[j];}
			}
			if (temp <= limit) {max = Math.max(max,temp);}
		}
		out.println(max);
	}
}
0