結果

問題 No.1036 Make One With GCD 2
ユーザー 👑 obakyanobakyan
提出日時 2021-08-02 22:43:21
言語 Lua
(LuaJit 2.1.1696795921)
結果
TLE  
実行時間 -
コード長 1,492 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 5,156 KB
実行使用メモリ 118,464 KB
最終ジャッジ日時 2023-10-14 20:58:48
合計ジャッジ時間 17,177 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 260 ms
39,676 KB
testcase_01 AC 443 ms
65,060 KB
testcase_02 AC 274 ms
48,196 KB
testcase_03 AC 63 ms
10,588 KB
testcase_04 AC 107 ms
17,280 KB
testcase_05 AC 1 ms
4,352 KB
testcase_06 AC 1 ms
4,352 KB
testcase_07 AC 145 ms
23,008 KB
testcase_08 AC 110 ms
19,732 KB
testcase_09 AC 1,630 ms
74,604 KB
testcase_10 AC 1,519 ms
71,352 KB
testcase_11 AC 1,674 ms
75,764 KB
testcase_12 AC 1,484 ms
72,060 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 3 ms
4,348 KB
testcase_19 AC 3 ms
4,352 KB
testcase_20 AC 5 ms
4,352 KB
testcase_21 AC 5 ms
4,352 KB
testcase_22 TLE -
testcase_23 AC 1,643 ms
73,924 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 2 ms
4,352 KB
testcase_28 AC 1 ms
4,348 KB
testcase_29 AC 1 ms
4,352 KB
testcase_30 AC 2 ms
4,348 KB
testcase_31 AC 2 ms
4,352 KB
testcase_32 AC 2 ms
4,352 KB
testcase_33 AC 1 ms
4,348 KB
testcase_34 AC 2 ms
4,352 KB
testcase_35 AC 1 ms
4,348 KB
testcase_36 AC 1 ms
4,348 KB
testcase_37 AC 1 ms
4,352 KB
testcase_38 AC 272 ms
47,820 KB
testcase_39 AC 291 ms
47,400 KB
testcase_40 AC 1,691 ms
73,932 KB
testcase_41 AC 983 ms
102,692 KB
testcase_42 AC 951 ms
102,500 KB
testcase_43 AC 874 ms
106,524 KB
testcase_44 AC 1,000 ms
104,524 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 function getgcd(x, y)
  while 0LL < x do
    x, y = y % x, x
  end
  return y
end

local n = io.read("*n", "*l")
local a = {}
local str = io.read()
local I = 0
for w in str:gmatch("%d+") do
  I = I + 1
  a[I] = lltonumber(w)
end
a[n + 1] = 1LL

local suf_spos = 0
local pre_sum, suf_sum = {}, {}
local pre_idx_len, suf_len = 0, 0

local function push(idx)
  suf_len = suf_len + 1
  if suf_len == 1 then
    suf_spos = idx
    suf_sum[suf_len] = a[idx]
  else
    suf_sum[suf_len] = getgcd(suf_sum[suf_len - 1], a[idx])
  end
end
local function pop()
  if pre_idx_len == 0 then
    pre_sum[1] = a[suf_spos + suf_len - 1]
    for i = 2, suf_len - 1 do
      pre_sum[i] = getgcd(pre_sum[i - 1], a[suf_spos + suf_len - i])
    end
    pre_idx_len = suf_len - 1
    suf_len = 0
  else
    pre_idx_len = pre_idx_len - 1
  end
end
local function query()
  if pre_idx_len == 0 then
    return suf_sum[suf_len]
  elseif suf_len == 0 then
    return pre_sum[pre_idx_len]
  else
    return getgcd(suf_sum[suf_len], pre_sum[pre_idx_len])
  end
end

local ret = 0
local cur = a[1]
local right = 1
push(1)
for i = 1, n do
  if right < i then
    push(i)
    right = i
    cur = a[i]
  end
  cur = query()
  while 1LL < cur do
    right = right + 1
    push(right)
    cur = getgcd(cur, a[right])
  end
  ret = ret + n + 1 - right
  pop()
end
print(ret)
0