結果

問題 No.156 キャンディー・ボックス
ユーザー nonokai10nonokai10
提出日時 2018-03-02 15:45:52
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 185 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,920 KB
最終ジャッジ日時 2024-06-11 07:41:33
合計ジャッジ時間 10,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
17,536 KB
testcase_01 AC 75 ms
12,416 KB
testcase_02 AC 75 ms
12,032 KB
testcase_03 AC 79 ms
12,032 KB
testcase_04 AC 83 ms
12,032 KB
testcase_05 AC 225 ms
12,288 KB
testcase_06 AC 362 ms
12,288 KB
testcase_07 AC 328 ms
12,288 KB
testcase_08 AC 287 ms
12,288 KB
testcase_09 AC 193 ms
12,416 KB
testcase_10 AC 317 ms
12,160 KB
testcase_11 AC 217 ms
12,160 KB
testcase_12 AC 378 ms
12,288 KB
testcase_13 AC 263 ms
12,160 KB
testcase_14 AC 223 ms
12,160 KB
testcase_15 AC 311 ms
12,288 KB
testcase_16 AC 186 ms
12,160 KB
testcase_17 AC 273 ms
12,160 KB
testcase_18 AC 134 ms
12,288 KB
testcase_19 AC 150 ms
12,160 KB
testcase_20 AC 83 ms
12,288 KB
testcase_21 AC 89 ms
12,544 KB
testcase_22 AC 128 ms
12,288 KB
testcase_23 AC 104 ms
12,160 KB
testcase_24 AC 76 ms
12,032 KB
testcase_25 AC 78 ms
12,032 KB
testcase_26 AC 77 ms
12,288 KB
testcase_27 AC 78 ms
12,032 KB
testcase_28 AC 75 ms
12,032 KB
testcase_29 AC 74 ms
12,416 KB
testcase_30 AC 1,075 ms
12,160 KB
testcase_31 AC 251 ms
12,160 KB
testcase_32 TLE -
testcase_33 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m = gets.split.map(&:to_i)
array = gets.split.map(&:to_i).sort
m.times do
  n.times do |i|
    if array[i] != 0
      array[i] -= 1
      break
    end
  end
end
puts array.count(0)
0