結果

問題 No.929 よくあるボールを移動するやつ
ユーザー simansiman
提出日時 2020-09-16 09:31:16
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 21,504 KB
最終ジャッジ日時 2024-06-22 03:04:30
合計ジャッジ時間 2,410 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 WA -
testcase_03 AC 72 ms
12,288 KB
testcase_04 AC 75 ms
12,288 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 130 ms
20,352 KB
testcase_11 AC 128 ms
18,560 KB
testcase_12 WA -
testcase_13 AC 142 ms
21,376 KB
testcase_14 AC 125 ms
19,328 KB
testcase_15 AC 129 ms
20,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
B = gets.split.map(&:to_i)

stock = []
empty = []
ans = 0

B.each_with_index do |b, idx|
  if b == 0
    if stock.empty?
      empty << idx
    else
      i, cnt = stock.pop

      ans += idx - i
      cnt -= 1

      stock.push([i, cnt]) if cnt > 0
    end
  else
    while empty.size > 0 && b > 0
      i = empty.pop
      ans += idx - i
      b -= 1
    end

    r = b - 1

    if r <= 0
      empty.push(idx)
    else
      stock.push([idx, r])
    end
  end
end

puts ans
0