結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,288 KB
testcase_01 AC 84 ms
12,288 KB
testcase_02 AC 76 ms
12,288 KB
testcase_03 AC 75 ms
12,160 KB
testcase_04 AC 76 ms
12,288 KB
testcase_05 AC 74 ms
12,288 KB
testcase_06 AC 76 ms
12,288 KB
testcase_07 AC 96 ms
14,848 KB
testcase_08 AC 128 ms
19,328 KB
testcase_09 AC 130 ms
19,584 KB
testcase_10 AC 136 ms
20,352 KB
testcase_11 AC 131 ms
18,560 KB
testcase_12 AC 140 ms
21,376 KB
testcase_13 AC 140 ms
21,376 KB
testcase_14 AC 124 ms
19,456 KB
testcase_15 AC 133 ms
20,608 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

    if b == 0
      empty.push(idx)
    elsif b >= 2
      stock.push([idx, b - 1])
    end
  end
end

puts ans
0