結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 102 ms
12,160 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 89 ms
12,160 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 150 ms
12,160 KB
testcase_06 AC 225 ms
12,288 KB
testcase_07 AC 197 ms
12,032 KB
testcase_08 AC 173 ms
12,032 KB
testcase_09 AC 151 ms
12,032 KB
testcase_10 AC 198 ms
12,160 KB
testcase_11 AC 147 ms
12,160 KB
testcase_12 AC 218 ms
12,160 KB
testcase_13 AC 173 ms
12,160 KB
testcase_14 AC 144 ms
12,032 KB
testcase_15 AC 188 ms
12,032 KB
testcase_16 AC 150 ms
12,160 KB
testcase_17 AC 175 ms
12,160 KB
testcase_18 AC 120 ms
12,288 KB
testcase_19 AC 125 ms
12,160 KB
testcase_20 AC 93 ms
12,160 KB
testcase_21 AC 99 ms
12,160 KB
testcase_22 AC 118 ms
12,160 KB
testcase_23 AC 103 ms
12,160 KB
testcase_24 AC 90 ms
12,032 KB
testcase_25 AC 89 ms
12,032 KB
testcase_26 AC 93 ms
12,160 KB
testcase_27 AC 94 ms
12,160 KB
testcase_28 AC 94 ms
12,160 KB
testcase_29 AC 92 ms
12,032 KB
testcase_30 AC 460 ms
11,904 KB
testcase_31 AC 224 ms
12,160 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
    soe = box.index(box.min)
    unless box[soe] == 0
      box[soe] -= 1
      count += 1
    end
    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