結果

問題 No.999 てん vs. ほむ
ユーザー gemmarogemmaro
提出日時 2020-11-07 08:55:07
言語 Ruby
(3.3.0)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 596 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 33,536 KB
最終ジャッジ日時 2024-07-22 14:20:56
合計ジャッジ時間 4,895 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,288 KB
testcase_01 AC 94 ms
12,160 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 AC 72 ms
12,288 KB
testcase_04 AC 78 ms
12,032 KB
testcase_05 AC 73 ms
12,288 KB
testcase_06 AC 72 ms
12,288 KB
testcase_07 AC 74 ms
12,160 KB
testcase_08 AC 80 ms
12,672 KB
testcase_09 AC 218 ms
32,128 KB
testcase_10 AC 117 ms
16,000 KB
testcase_11 AC 104 ms
15,616 KB
testcase_12 AC 138 ms
21,248 KB
testcase_13 AC 235 ms
32,896 KB
testcase_14 AC 234 ms
33,408 KB
testcase_15 AC 228 ms
32,896 KB
testcase_16 AC 226 ms
33,536 KB
testcase_17 AC 218 ms
32,512 KB
testcase_18 AC 214 ms
31,360 KB
testcase_19 AC 213 ms
32,512 KB
testcase_20 AC 219 ms
31,360 KB
testcase_21 AC 228 ms
33,280 KB
testcase_22 AC 226 ms
33,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

class Array
  def homura_point
    pairs = each_slice(2)
    
    left_sums = Array.new(N + 1, 0)
    right_sums = Array.new(N + 1, 0)

    pairs.each_with_index do |pair, index|
      left = pair[0]
      left_sums[index + 1] = left_sums[index] + left
    end

    pairs.reverse_each.with_index do |pair, index|
      right = pair[1]
      right_sums[N - index - 1] = right_sums[N - index] + right
    end

    left_sums.zip(right_sums).map { _1 + _2 }.max
  end
end

def solve
  2 * A.homura_point - A.sum
end

N = gets.to_i
A = gets.split.map(&:to_i)

puts solve
0