結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 201 ms
28,288 KB
testcase_01 AC 188 ms
27,392 KB
testcase_02 AC 194 ms
27,904 KB
testcase_03 AC 145 ms
20,736 KB
testcase_04 AC 205 ms
29,696 KB
testcase_05 AC 161 ms
22,272 KB
testcase_06 AC 140 ms
18,048 KB
testcase_07 AC 200 ms
29,312 KB
testcase_08 AC 103 ms
14,208 KB
testcase_09 AC 170 ms
23,296 KB
testcase_10 AC 209 ms
30,336 KB
testcase_11 AC 215 ms
30,336 KB
testcase_12 AC 218 ms
30,208 KB
testcase_13 AC 215 ms
30,336 KB
testcase_14 AC 212 ms
30,336 KB
testcase_15 AC 219 ms
30,464 KB
testcase_16 AC 212 ms
30,208 KB
testcase_17 AC 214 ms
30,336 KB
testcase_18 AC 243 ms
30,208 KB
testcase_19 AC 215 ms
30,208 KB
testcase_20 AC 212 ms
30,464 KB
testcase_21 AC 211 ms
30,336 KB
testcase_22 AC 217 ms
30,464 KB
testcase_23 AC 86 ms
12,288 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 88 ms
12,160 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 91 ms
12,160 KB
testcase_31 WA -
testcase_32 AC 92 ms
12,160 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 87 ms
12,288 KB
testcase_36 AC 88 ms
12,288 KB
testcase_37 WA -
testcase_38 AC 87 ms
12,416 KB
testcase_39 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

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