結果

問題 No.929 よくあるボールを移動するやつ
ユーザー 小野寺健小野寺健
提出日時 2021-11-09 18:26:26
言語 Ruby
(3.3.0)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-04-29 16:15:34
合計ジャッジ時間 3,271 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,160 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 91 ms
12,288 KB
testcase_03 AC 92 ms
12,160 KB
testcase_04 AC 91 ms
12,160 KB
testcase_05 AC 91 ms
12,160 KB
testcase_06 AC 92 ms
12,032 KB
testcase_07 AC 118 ms
14,848 KB
testcase_08 AC 159 ms
19,584 KB
testcase_09 AC 158 ms
19,712 KB
testcase_10 AC 152 ms
19,200 KB
testcase_11 AC 154 ms
18,560 KB
testcase_12 AC 149 ms
19,328 KB
testcase_13 AC 148 ms
19,968 KB
testcase_14 AC 154 ms
19,584 KB
testcase_15 AC 152 ms
19,456 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
B = gets.split(" ").map{|s| s.to_i}

from = []
to = []

cnt = 0
B.each_with_index {|n, i|
	if n == 0 then
		if from.length > 0
			f = from.shift
			cnt += i - f
		else
			to << i
		end
	else 
		while n > 1 and to.length > 0 do
			t = to.shift
			cnt += i - t
			n -= 1
		end
		if n > 1 then
			from.concat([i] * (n-1))
		end
	end
}

puts cnt
0