結果

問題 No.156 キャンディー・ボックス
ユーザー quilt-tailsquilt-tails
提出日時 2016-10-27 18:19:28
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 301 bytes
コンパイル時間 53 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-11-24 04:55:48
合計ジャッジ時間 10,415 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
12,416 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 90 ms
12,032 KB
testcase_03 AC 91 ms
12,032 KB
testcase_04 AC 91 ms
12,288 KB
testcase_05 AC 145 ms
12,288 KB
testcase_06 AC 215 ms
12,032 KB
testcase_07 AC 184 ms
12,032 KB
testcase_08 AC 165 ms
12,160 KB
testcase_09 AC 146 ms
12,288 KB
testcase_10 AC 183 ms
12,032 KB
testcase_11 AC 144 ms
12,416 KB
testcase_12 AC 209 ms
12,288 KB
testcase_13 AC 165 ms
12,160 KB
testcase_14 AC 139 ms
12,288 KB
testcase_15 AC 179 ms
12,160 KB
testcase_16 AC 150 ms
12,032 KB
testcase_17 AC 172 ms
12,160 KB
testcase_18 AC 121 ms
12,160 KB
testcase_19 AC 124 ms
12,160 KB
testcase_20 AC 94 ms
12,160 KB
testcase_21 AC 102 ms
12,160 KB
testcase_22 AC 119 ms
12,160 KB
testcase_23 AC 105 ms
12,032 KB
testcase_24 AC 95 ms
12,160 KB
testcase_25 AC 90 ms
12,032 KB
testcase_26 AC 89 ms
12,160 KB
testcase_27 AC 90 ms
12,032 KB
testcase_28 AC 91 ms
12,288 KB
testcase_29 AC 90 ms
12,160 KB
testcase_30 AC 410 ms
12,160 KB
testcase_31 AC 217 ms
12,288 KB
testcase_32 TLE -
testcase_33 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n, m = gets.split.map(&:to_i)
box = gets.split.map(&:to_i)
count = 0
empty_box = 0
while m > count
  if box.min > 0
    box[box.index(box.min)] -= 1
    count += 1
    if box.min == 0
      box.delete_at(box.index(box.min))
      empty_box += 1
    end
    break if count == m
  end
end
puts empty_box
0