結果

問題 No.156 キャンディー・ボックス
ユーザー fshutofshuto
提出日時 2019-04-30 11:35:00
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 169 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-06-09 08:52:37
合計ジャッジ時間 7,124 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,032 KB
testcase_01 WA -
testcase_02 AC 86 ms
11,904 KB
testcase_03 AC 85 ms
12,032 KB
testcase_04 AC 86 ms
11,776 KB
testcase_05 WA -
testcase_06 AC 147 ms
12,032 KB
testcase_07 AC 140 ms
11,904 KB
testcase_08 AC 141 ms
12,160 KB
testcase_09 AC 118 ms
12,032 KB
testcase_10 AC 141 ms
12,160 KB
testcase_11 AC 130 ms
11,776 KB
testcase_12 AC 147 ms
12,160 KB
testcase_13 AC 126 ms
11,904 KB
testcase_14 AC 128 ms
12,032 KB
testcase_15 AC 141 ms
12,160 KB
testcase_16 AC 125 ms
11,904 KB
testcase_17 AC 132 ms
12,032 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 87 ms
11,904 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 85 ms
12,032 KB
testcase_25 AC 86 ms
12,032 KB
testcase_26 AC 85 ms
11,904 KB
testcase_27 AC 84 ms
12,160 KB
testcase_28 WA -
testcase_29 AC 85 ms
11,904 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 1,067 ms
12,160 KB
testcase_33 AC 1,069 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, m = gets.split.map(&:to_i)
cs = gets.split.map(&:to_i).sort
i = 0
while m > 0 do
  if cs[i] > 0
    cs[i] -= 1
    m -= 1
  end
  i += 1
  i %= n
end
puts cs.count(0)
0