結果

問題 No.617 Nafmo、買い出しに行く
ユーザー takeya_okinotakeya_okino
提出日時 2018-01-07 20:52:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 215 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 1,765 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 41,992 KB
最終ジャッジ日時 2024-06-02 13:08:23
合計ジャッジ時間 6,266 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
40,008 KB
testcase_01 AC 112 ms
41,500 KB
testcase_02 AC 114 ms
41,708 KB
testcase_03 AC 133 ms
41,580 KB
testcase_04 AC 114 ms
41,656 KB
testcase_05 AC 130 ms
41,360 KB
testcase_06 AC 214 ms
41,596 KB
testcase_07 AC 211 ms
41,736 KB
testcase_08 AC 116 ms
41,024 KB
testcase_09 AC 106 ms
41,712 KB
testcase_10 AC 215 ms
41,200 KB
testcase_11 AC 202 ms
41,992 KB
testcase_12 AC 213 ms
41,544 KB
testcase_13 AC 206 ms
41,832 KB
testcase_14 AC 212 ms
41,528 KB
testcase_15 AC 188 ms
41,416 KB
testcase_16 AC 200 ms
41,548 KB
testcase_17 AC 190 ms
41,500 KB
testcase_18 AC 117 ms
41,268 KB
testcase_19 AC 112 ms
41,344 KB
testcase_20 AC 110 ms
41,136 KB
testcase_21 AC 112 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    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 ans = 0;
    for(int i = 1; i < (int)Math.pow(2, n); i++) {
      int s = 0;
      for(int j = 0; j < n; j++) {
        if((i & (1 << j)) != 0) s += a[j];
      }
      if(s <= k) ans = Math.max(s, ans); 
    }
    System.out.println(ans);
  }
}
0