結果

問題 No.999 てん vs. ほむ
ユーザー simansiman
提出日時 2020-02-28 21:34:24
言語 Ruby
(3.3.0)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 36 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 30,080 KB
最終ジャッジ日時 2024-10-13 16:58:36
合計ジャッジ時間 4,477 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
12,160 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 75 ms
12,288 KB
testcase_03 AC 79 ms
12,288 KB
testcase_04 AC 79 ms
12,160 KB
testcase_05 AC 76 ms
12,160 KB
testcase_06 AC 80 ms
12,160 KB
testcase_07 AC 81 ms
12,288 KB
testcase_08 AC 84 ms
12,544 KB
testcase_09 AC 213 ms
28,544 KB
testcase_10 AC 119 ms
16,512 KB
testcase_11 AC 106 ms
15,104 KB
testcase_12 AC 135 ms
19,328 KB
testcase_13 AC 217 ms
30,080 KB
testcase_14 AC 224 ms
30,080 KB
testcase_15 AC 227 ms
29,952 KB
testcase_16 AC 222 ms
30,080 KB
testcase_17 AC 209 ms
28,032 KB
testcase_18 AC 210 ms
27,776 KB
testcase_19 AC 209 ms
27,648 KB
testcase_20 AC 208 ms
27,904 KB
testcase_21 AC 215 ms
29,824 KB
testcase_22 AC 220 ms
29,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

R = A.each_slice(2).map { |a, b| a - b }
L = A.each_slice(2).map { |a, b| b - a }

SUM_R = [0]
SUM_L = [0]

R.inject(0) { |s, r| 
  v = s + r
  SUM_R << v
  v
}

L.reverse.inject(0) { |s, l|
  v = s + l
  SUM_L.unshift(v)
  v
}

ans = -Float::INFINITY

0.upto(N) do |i|
  v = SUM_L[i] + SUM_R[i]

  ans = v if ans < v
end

puts ans
0