結果

問題 No.2854 -1 Subsequence
ユーザー tomeruntomerun
提出日時 2024-08-25 13:48:42
言語 Crystal
(1.11.2)
結果
WA  
実行時間 -
コード長 339 bytes
コンパイル時間 11,461 ms
コンパイル使用メモリ 296,672 KB
実行使用メモリ 19,272 KB
最終ジャッジ日時 2024-08-25 13:48:59
合計ジャッジ時間 13,516 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 23 ms
12,300 KB
testcase_02 WA -
testcase_03 AC 14 ms
8,576 KB
testcase_04 WA -
testcase_05 AC 19 ms
11,264 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 20 ms
11,528 KB
testcase_10 AC 32 ms
16,088 KB
testcase_11 AC 30 ms
16,212 KB
testcase_12 AC 30 ms
16,324 KB
testcase_13 AC 33 ms
16,084 KB
testcase_14 AC 32 ms
16,104 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 31 ms
18,608 KB
testcase_21 WA -
testcase_22 AC 30 ms
19,272 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 1 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 1 ms
6,944 KB
testcase_33 AC 2 ms
6,944 KB
testcase_34 AC 1 ms
6,940 KB
testcase_35 AC 2 ms
6,940 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 AC 1 ms
6,944 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1i64 << 60
n = read_line.to_i
a = read_line.split.map(&.to_i64)
dp = [-INF, -INF]
n.times do |i|
  if dp[0] == -INF && dp[1] == -INF
    dp[0] = -a[i]
  elsif dp[1] == -INF
    dp[0], dp[1] = {dp[0], dp[1] - a[i]}.max, dp[0] + a[i]
  else
    dp[0], dp[1] = {dp[0], dp[1] - a[i]}.max, {dp[1], dp[0] + a[i]}.max
  end
end
puts dp.max
0