結果
問題 | No.929 よくあるボールを移動するやつ |
ユーザー | TANIGUCHI Kousuke |
提出日時 | 2019-12-06 13:16:23 |
言語 | Ruby (3.4.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 241 bytes |
コンパイル時間 | 358 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 19,584 KB |
最終ジャッジ日時 | 2024-12-23 05:13:30 |
合計ジャッジ時間 | 3,477 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 91 ms
12,288 KB |
testcase_01 | AC | 91 ms
12,288 KB |
testcase_02 | AC | 88 ms
12,160 KB |
testcase_03 | AC | 93 ms
12,160 KB |
testcase_04 | AC | 93 ms
12,160 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
コンパイルメッセージ
Syntax OK
ソースコード
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 end puts t