結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
14,036 KB
testcase_01 AC 26 ms
12,224 KB
testcase_02 AC 27 ms
14,080 KB
testcase_03 AC 16 ms
8,576 KB
testcase_04 AC 29 ms
15,828 KB
testcase_05 AC 19 ms
11,712 KB
testcase_06 AC 12 ms
7,168 KB
testcase_07 AC 30 ms
15,956 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 20 ms
11,648 KB
testcase_10 AC 34 ms
16,220 KB
testcase_11 AC 34 ms
16,104 KB
testcase_12 AC 34 ms
16,708 KB
testcase_13 AC 33 ms
16,092 KB
testcase_14 AC 34 ms
16,100 KB
testcase_15 AC 33 ms
16,212 KB
testcase_16 AC 33 ms
16,100 KB
testcase_17 AC 33 ms
16,084 KB
testcase_18 AC 33 ms
16,228 KB
testcase_19 AC 33 ms
16,084 KB
testcase_20 AC 31 ms
19,276 KB
testcase_21 AC 31 ms
16,088 KB
testcase_22 AC 33 ms
18,960 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 2 ms
6,944 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
6,940 KB
testcase_31 WA -
testcase_32 AC 2 ms
6,940 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 2 ms
6,944 KB
testcase_36 AC 2 ms
6,940 KB
testcase_37 WA -
testcase_38 AC 2 ms
6,948 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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