結果

問題 No.156 キャンディー・ボックス
ユーザー harhogefooharhogefoo
提出日時 2016-10-09 20:39:17
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,669 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 66 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-07-05 15:55:58
合計ジャッジ時間 7,780 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,160 KB
testcase_01 AC 78 ms
12,032 KB
testcase_02 AC 73 ms
12,160 KB
testcase_03 AC 72 ms
12,160 KB
testcase_04 AC 73 ms
12,032 KB
testcase_05 AC 113 ms
12,288 KB
testcase_06 AC 166 ms
12,032 KB
testcase_07 AC 142 ms
12,032 KB
testcase_08 AC 130 ms
12,160 KB
testcase_09 AC 115 ms
12,032 KB
testcase_10 AC 146 ms
12,288 KB
testcase_11 AC 113 ms
12,160 KB
testcase_12 AC 162 ms
12,160 KB
testcase_13 AC 130 ms
12,160 KB
testcase_14 AC 110 ms
12,160 KB
testcase_15 AC 138 ms
12,160 KB
testcase_16 AC 116 ms
12,288 KB
testcase_17 AC 130 ms
12,160 KB
testcase_18 AC 92 ms
12,288 KB
testcase_19 AC 95 ms
12,032 KB
testcase_20 AC 73 ms
12,288 KB
testcase_21 AC 77 ms
12,032 KB
testcase_22 AC 90 ms
12,160 KB
testcase_23 AC 80 ms
12,032 KB
testcase_24 AC 72 ms
12,160 KB
testcase_25 AC 72 ms
12,032 KB
testcase_26 AC 71 ms
12,160 KB
testcase_27 AC 71 ms
12,032 KB
testcase_28 AC 72 ms
12,288 KB
testcase_29 AC 71 ms
12,032 KB
testcase_30 AC 317 ms
12,160 KB
testcase_31 AC 157 ms
12,032 KB
testcase_32 AC 1,669 ms
12,288 KB
testcase_33 AC 1,659 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n, m = gets.chomp.split(" ").map(&:to_i)
c_ary = gets.chomp.split(" ").map(&:to_i)

count = 0
m.times do |i|
  min_index = c_ary.index(c_ary.min)
  c_ary[min_index] -= 1
  if c_ary[min_index] == 0
    c_ary.delete_at(min_index)
    count += 1
  end
end
puts count
0