結果

問題 No.1268 Fruit Rush 2
ユーザー 👑 obakyanobakyan
提出日時 2021-07-29 22:57:46
言語 Lua
(LuaJit 2.1.1696795921)
結果
AC  
実行時間 565 ms / 2,000 ms
コード長 653 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 6,688 KB
実行使用メモリ 22,552 KB
最終ジャッジ日時 2024-09-14 19:29:47
合計ジャッジ時間 11,889 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 2 ms
6,940 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 405 ms
15,468 KB
testcase_17 AC 326 ms
13,984 KB
testcase_18 AC 366 ms
14,480 KB
testcase_19 AC 356 ms
14,336 KB
testcase_20 AC 345 ms
14,164 KB
testcase_21 AC 350 ms
14,132 KB
testcase_22 AC 397 ms
15,372 KB
testcase_23 AC 400 ms
15,496 KB
testcase_24 AC 359 ms
14,328 KB
testcase_25 AC 332 ms
14,020 KB
testcase_26 AC 564 ms
20,892 KB
testcase_27 AC 560 ms
21,012 KB
testcase_28 AC 564 ms
20,852 KB
testcase_29 AC 565 ms
20,924 KB
testcase_30 AC 549 ms
20,992 KB
testcase_31 AC 541 ms
17,688 KB
testcase_32 AC 541 ms
17,688 KB
testcase_33 AC 488 ms
22,424 KB
testcase_34 AC 420 ms
17,656 KB
testcase_35 AC 504 ms
22,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

local ffi = require("ffi")
local C = ffi.C
ffi.cdef[[
long long atoll(const char*);
]]

local function lltonumber(str)
  return C.atoll(str)
end

local n = io.read("*n", "*l")
local s = io.read()
local a = {}
for w in s:gmatch("%d+") do
  table.insert(a, lltonumber(w))
end
table.sort(a)
local len = {}
for i = 1, n do
  len[i] = 0
end
for i = n - 1, 1, -1 do
  if a[i] + 2LL == a[i + 1] then
    len[i] = len[i + 1] + 1
  elseif i + 2 <= n and a[i] + 2LL == a[i + 2] then
    len[i] = len[i + 2] + 1
  else
    len[i] = 0
  end
end
local ret = n
for i = 1, n - 1 do
  if a[i] + 1LL == a[i + 1] then
    ret = ret + 1 + len[i + 1]
  end
end
print(ret)
0