結果

問題 No.2854 -1 Subsequence
ユーザー suzuishisuzuishi
提出日時 2024-08-25 23:40:49
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 170 bytes
コンパイル時間 953 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-08-25 23:40:59
合計ジャッジ時間 8,663 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 186 ms
27,648 KB
testcase_02 WA -
testcase_03 AC 146 ms
20,352 KB
testcase_04 WA -
testcase_05 AC 163 ms
22,528 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 105 ms
14,208 KB
testcase_09 AC 173 ms
23,424 KB
testcase_10 AC 213 ms
30,336 KB
testcase_11 AC 212 ms
30,336 KB
testcase_12 AC 211 ms
30,208 KB
testcase_13 AC 225 ms
30,336 KB
testcase_14 AC 214 ms
30,336 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 209 ms
30,336 KB
testcase_21 WA -
testcase_22 AC 214 ms
30,464 KB
testcase_23 AC 88 ms
12,160 KB
testcase_24 AC 87 ms
12,288 KB
testcase_25 AC 92 ms
12,160 KB
testcase_26 AC 88 ms
12,288 KB
testcase_27 AC 87 ms
12,160 KB
testcase_28 AC 87 ms
12,160 KB
testcase_29 AC 87 ms
12,288 KB
testcase_30 AC 90 ms
12,160 KB
testcase_31 AC 88 ms
12,160 KB
testcase_32 AC 87 ms
12,416 KB
testcase_33 AC 89 ms
12,160 KB
testcase_34 AC 88 ms
12,416 KB
testcase_35 AC 88 ms
12,160 KB
testcase_36 AC 88 ms
12,416 KB
testcase_37 AC 116 ms
12,288 KB
testcase_38 AC 87 ms
12,288 KB
testcase_39 AC 87 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n = gets.to_i
a = gets.split.map &:to_i
dp0, dp1 = -a[0], -Float::INFINITY
a[1..].each do |i|
  dp0, dp1 = [dp0, -i + dp1].max, [dp1, i + dp0].max
end
puts [dp0, dp1].max
0