結果

問題 No.929 よくあるボールを移動するやつ
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2019-12-06 13:17:42
言語 Ruby
(3.3.0)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 246 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-06-02 09:20:26
合計ジャッジ時間 2,754 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,160 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 81 ms
12,288 KB
testcase_03 AC 80 ms
12,160 KB
testcase_04 AC 81 ms
12,288 KB
testcase_05 AC 82 ms
12,160 KB
testcase_06 AC 84 ms
12,032 KB
testcase_07 AC 132 ms
15,232 KB
testcase_08 AC 202 ms
22,144 KB
testcase_09 AC 203 ms
22,272 KB
testcase_10 AC 154 ms
19,200 KB
testcase_11 AC 154 ms
19,456 KB
testcase_12 AC 160 ms
19,584 KB
testcase_13 AC 146 ms
19,456 KB
testcase_14 AC 156 ms
19,456 KB
testcase_15 AC 149 ms
19,456 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
B = gets.split.map(&:to_i)
S = Array.new(N + 1, 0)
B.each_with_index do |b,i|
  S[i + 1] = S[i] + b
end

t = 0
(1 .. N).inject(0) do |m, n|
  m_ = S[m] >= n ? m : (m .. N).find{|m_| S[m_] >= n }
  t += (n - m_).abs
  m_
end

puts t
0