結果

問題 No.617 Nafmo、買い出しに行く
ユーザー nonokai10nonokai10
提出日時 2018-03-28 21:52:47
言語 Ruby
(3.3.0)
結果
AC  
実行時間 476 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 32,512 KB
最終ジャッジ日時 2024-06-25 13:18:40
合計ジャッジ時間 6,764 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,032 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 90 ms
12,160 KB
testcase_03 AC 116 ms
14,464 KB
testcase_04 AC 88 ms
12,288 KB
testcase_05 AC 139 ms
15,616 KB
testcase_06 AC 476 ms
32,256 KB
testcase_07 AC 470 ms
32,256 KB
testcase_08 AC 88 ms
12,032 KB
testcase_09 AC 90 ms
12,032 KB
testcase_10 AC 470 ms
32,512 KB
testcase_11 AC 476 ms
32,256 KB
testcase_12 AC 472 ms
32,256 KB
testcase_13 AC 466 ms
30,976 KB
testcase_14 AC 469 ms
32,384 KB
testcase_15 AC 442 ms
24,064 KB
testcase_16 AC 440 ms
24,192 KB
testcase_17 AC 446 ms
24,064 KB
testcase_18 AC 89 ms
12,160 KB
testcase_19 AC 90 ms
12,288 KB
testcase_20 AC 89 ms
12,160 KB
testcase_21 AC 88 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, k = gets.split.map(&:to_i)
a = []
n.times do
  a << gets.to_i
end
b = []
(1..n).each do |i|
  a.combination(i).each do |x|
    b << x.sum
  end
end
p (x = b.select{|i| i <= k}.max) ? x : 0
0