結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,160 KB
testcase_01 AC 94 ms
12,288 KB
testcase_02 AC 98 ms
12,032 KB
testcase_03 AC 116 ms
14,208 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 140 ms
15,232 KB
testcase_06 AC 473 ms
32,512 KB
testcase_07 AC 474 ms
32,512 KB
testcase_08 WA -
testcase_09 AC 90 ms
12,032 KB
testcase_10 AC 478 ms
32,256 KB
testcase_11 AC 477 ms
32,256 KB
testcase_12 AC 473 ms
32,128 KB
testcase_13 AC 466 ms
30,592 KB
testcase_14 AC 475 ms
32,256 KB
testcase_15 WA -
testcase_16 AC 448 ms
24,320 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 90 ms
12,032 KB
testcase_20 AC 91 ms
12,416 KB
testcase_21 AC 91 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 b.select{|i| i <= k}.max
0