結果

問題 No.617 Nafmo、買い出しに行く
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-28 18:21:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 535 bytes
コンパイル時間 2,138 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 41,868 KB
最終ジャッジ日時 2024-06-01 09:01:44
合計ジャッジ時間 7,153 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,528 KB
testcase_01 AC 130 ms
41,188 KB
testcase_02 AC 133 ms
41,616 KB
testcase_03 AC 163 ms
41,280 KB
testcase_04 AC 141 ms
41,568 KB
testcase_05 AC 150 ms
41,528 KB
testcase_06 AC 235 ms
41,496 KB
testcase_07 AC 232 ms
41,868 KB
testcase_08 WA -
testcase_09 AC 129 ms
41,132 KB
testcase_10 AC 231 ms
41,524 KB
testcase_11 AC 229 ms
41,468 KB
testcase_12 AC 243 ms
41,720 KB
testcase_13 AC 235 ms
41,360 KB
testcase_14 AC 240 ms
41,400 KB
testcase_15 WA -
testcase_16 AC 237 ms
41,396 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 125 ms
41,376 KB
testcase_20 AC 117 ms
40,088 KB
testcase_21 AC 131 ms
41,340 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 = Integer.MIN_VALUE;
		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