結果

問題 No.929 よくあるボールを移動するやつ
ユーザー 小野寺健小野寺健
提出日時 2021-11-09 18:26:26
言語 Ruby
(3.3.0)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 52 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 20,096 KB
最終ジャッジ日時 2024-11-18 21:26:38
合計ジャッジ時間 2,762 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,288 KB
testcase_01 AC 77 ms
12,160 KB
testcase_02 AC 77 ms
12,288 KB
testcase_03 AC 77 ms
12,160 KB
testcase_04 AC 77 ms
12,416 KB
testcase_05 AC 78 ms
12,288 KB
testcase_06 AC 80 ms
12,160 KB
testcase_07 AC 101 ms
14,720 KB
testcase_08 AC 137 ms
19,968 KB
testcase_09 AC 138 ms
19,840 KB
testcase_10 AC 137 ms
19,200 KB
testcase_11 AC 136 ms
18,688 KB
testcase_12 AC 133 ms
19,200 KB
testcase_13 AC 137 ms
20,096 KB
testcase_14 AC 139 ms
19,584 KB
testcase_15 AC 133 ms
19,328 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