結果

問題 No.2854 -1 Subsequence
ユーザー 👑 obakyanobakyan
提出日時 2024-09-16 10:46:16
言語 Lua
(LuaJit 2.1.1696795921)
結果
WA  
実行時間 -
コード長 280 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 6,940 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-16 10:46:21
合計ジャッジ時間 4,968 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
6,812 KB
testcase_01 AC 39 ms
6,940 KB
testcase_02 AC 46 ms
6,940 KB
testcase_03 AC 23 ms
6,940 KB
testcase_04 AC 46 ms
6,940 KB
testcase_05 AC 29 ms
6,944 KB
testcase_06 AC 17 ms
6,940 KB
testcase_07 AC 45 ms
6,940 KB
testcase_08 AC 7 ms
6,944 KB
testcase_09 AC 32 ms
6,940 KB
testcase_10 AC 51 ms
6,944 KB
testcase_11 AC 51 ms
6,940 KB
testcase_12 AC 51 ms
6,944 KB
testcase_13 AC 51 ms
6,944 KB
testcase_14 AC 50 ms
6,944 KB
testcase_15 AC 50 ms
6,944 KB
testcase_16 AC 52 ms
6,940 KB
testcase_17 AC 54 ms
6,944 KB
testcase_18 AC 50 ms
6,940 KB
testcase_19 AC 50 ms
6,940 KB
testcase_20 AC 50 ms
6,940 KB
testcase_21 AC 49 ms
6,944 KB
testcase_22 AC 51 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1 ms
6,944 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1 ms
6,940 KB
testcase_31 WA -
testcase_32 AC 1 ms
6,944 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 1 ms
6,944 KB
testcase_36 AC 2 ms
6,944 KB
testcase_37 WA -
testcase_38 AC 2 ms
6,940 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

local mmi, mma = math.min, math.max
local n = io.read("*n")
local odd, even = -1000000007 * 200010, 0
for i = 1, n do
  local a = io.read("*n")
  odd, even = mma(odd, even - a), mma(even, odd + a)
end
local ans = mma(odd, even)
ans = tostring(1LL * ans):gsub("LL", "")
print(ans)
0