結果

問題 No.617 Nafmo、買い出しに行く
ユーザー tsunabittsunabit
提出日時 2019-07-18 22:29:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 213 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 5,362 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 41,568 KB
最終ジャッジ日時 2024-06-07 16:05:49
合計ジャッジ時間 9,176 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,576 KB
testcase_01 AC 125 ms
41,568 KB
testcase_02 AC 106 ms
40,140 KB
testcase_03 AC 117 ms
40,300 KB
testcase_04 AC 105 ms
40,032 KB
testcase_05 AC 120 ms
40,336 KB
testcase_06 AC 190 ms
40,380 KB
testcase_07 AC 213 ms
41,460 KB
testcase_08 AC 125 ms
41,216 KB
testcase_09 AC 101 ms
40,196 KB
testcase_10 AC 212 ms
41,224 KB
testcase_11 AC 190 ms
40,348 KB
testcase_12 AC 190 ms
40,252 KB
testcase_13 AC 209 ms
41,544 KB
testcase_14 AC 200 ms
40,408 KB
testcase_15 AC 203 ms
40,744 KB
testcase_16 AC 208 ms
40,412 KB
testcase_17 AC 199 ms
40,156 KB
testcase_18 AC 120 ms
41,536 KB
testcase_19 AC 119 ms
41,264 KB
testcase_20 AC 117 ms
41,216 KB
testcase_21 AC 115 ms
40,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No617 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt(), k = sc.nextInt();
    	int[] a = new int[n];
    	int max = 0;
    	for(int i = 0; i < n; i++) a[i] = sc.nextInt();
    	for(int i = 0; i < Math.pow(2, n); i++) {
    		int ans = 0;
    		for(int j = 0; j < n; j++) {
    			if((1 & i>>j) == 1) ans += a[j];
    		}
    		if(max < ans && ans <= k) max = ans;
    	}
    	System.out.println(max);
    }
}
0