結果
問題 | No.451 575 |
ユーザー | 👑 obakyan |
提出日時 | 2020-04-20 23:42:42 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
AC
|
実行時間 | 158 ms / 2,000 ms |
コード長 | 1,368 bytes |
コンパイル時間 | 205 ms |
コンパイル使用メモリ | 6,816 KB |
実行使用メモリ | 14,372 KB |
最終ジャッジ日時 | 2024-10-06 09:36:34 |
合計ジャッジ時間 | 3,979 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 5 ms
6,816 KB |
testcase_06 | AC | 10 ms
6,820 KB |
testcase_07 | AC | 52 ms
10,260 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | AC | 4 ms
6,816 KB |
testcase_10 | AC | 35 ms
6,816 KB |
testcase_11 | AC | 108 ms
11,548 KB |
testcase_12 | AC | 144 ms
13,284 KB |
testcase_13 | AC | 145 ms
13,344 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 3 ms
6,816 KB |
testcase_16 | AC | 9 ms
6,816 KB |
testcase_17 | AC | 47 ms
10,008 KB |
testcase_18 | AC | 52 ms
10,260 KB |
testcase_19 | AC | 34 ms
6,912 KB |
testcase_20 | AC | 7 ms
6,816 KB |
testcase_21 | AC | 3 ms
6,820 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | AC | 158 ms
14,372 KB |
testcase_24 | AC | 78 ms
9,112 KB |
testcase_25 | AC | 1 ms
6,820 KB |
testcase_26 | AC | 1 ms
6,816 KB |
testcase_27 | AC | 3 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,816 KB |
testcase_29 | AC | 6 ms
6,820 KB |
testcase_30 | AC | 53 ms
10,132 KB |
testcase_31 | AC | 2 ms
6,816 KB |
testcase_32 | AC | 18 ms
6,816 KB |
ソースコード
local function lltonumber(str) local ret = 0LL for i = 1, #str do ret = ret * 10LL + str:sub(i, i):byte() - 48 end return ret end local function llprint(llnumber) local str = tostring(llnumber):gsub("LL", "") print(str) end local n = io.read("*n", "*l") local flag = true local minlim = 1LL local maxlim = 1000000000000000000LL local offset = 0LL local valid = true local b = {} for i = 1, n do local bs = io.read() b[i] = lltonumber(bs) if i % 2 == 1 then --a[i+1] = b[i] - a[i] flag = not flag offset = b[i] - offset else --a[i+1] = a[i] - b[i] offset = offset - b[i] end if flag then local ma = 1000000000000000000LL - offset if ma < maxlim then maxlim = ma end -- 1 <= offset + x if minlim < 1LL - offset then minlim = 1LL - offset end else local ma = offset - 1LL if ma < maxlim then maxlim = ma end local mi = offset - 1000000000000000000LL if minlim < mi then minlim = mi end end -- print(i, tostring(minlim), tostring(maxlim), tostring(offset), flag) if maxlim < minlim then valid = false end end if valid then print(n + 1) local v = minlim llprint(v) for i = 1, n do if i % 2 == 1 then --a[i+1] = b[i] - a[i] v = b[i] - v else v = v - b[i] end llprint(v) end else print(-1) end