結果
問題 | No.1036 Make One With GCD 2 |
ユーザー | 👑 obakyan |
提出日時 | 2021-08-02 22:25:45 |
言語 | Lua (LuaJit 2.1.1696795921) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,581 bytes |
コンパイル時間 | 182 ms |
コンパイル使用メモリ | 5,120 KB |
実行使用メモリ | 85,532 KB |
最終ジャッジ日時 | 2024-09-16 14:46:35 |
合計ジャッジ時間 | 34,470 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 267 ms
40,804 KB |
testcase_01 | AC | 349 ms
45,404 KB |
testcase_02 | AC | 268 ms
52,792 KB |
testcase_03 | AC | 56 ms
10,880 KB |
testcase_04 | AC | 98 ms
17,488 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 118 ms
19,856 KB |
testcase_08 | AC | 94 ms
17,416 KB |
testcase_09 | AC | 1,457 ms
66,852 KB |
testcase_10 | AC | 1,262 ms
63,196 KB |
testcase_11 | AC | 1,401 ms
67,616 KB |
testcase_12 | AC | 1,300 ms
63,640 KB |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | AC | 4 ms
5,376 KB |
testcase_19 | AC | 3 ms
5,376 KB |
testcase_20 | AC | 4 ms
5,376 KB |
testcase_21 | AC | 4 ms
5,376 KB |
testcase_22 | TLE | - |
testcase_23 | AC | 1,210 ms
56,028 KB |
testcase_24 | TLE | - |
testcase_25 | AC | 1,753 ms
67,924 KB |
testcase_26 | AC | 1,802 ms
69,772 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 1 ms
5,376 KB |
testcase_31 | AC | 3 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 1 ms
5,376 KB |
testcase_38 | AC | 268 ms
52,296 KB |
testcase_39 | AC | 288 ms
42,056 KB |
testcase_40 | AC | 1,185 ms
55,824 KB |
testcase_41 | AC | 865 ms
74,872 KB |
testcase_42 | AC | 854 ms
74,860 KB |
testcase_43 | AC | 775 ms
80,672 KB |
testcase_44 | AC | 841 ms
77,684 KB |
ソースコード
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() for w in str:gmatch("%d+") do table.insert(a, lltonumber(w)) end local suf_idx = {} local pre_sum, suf_sum = {}, {} local pre_idx_len, suf_idx_len = 0, 0 local function push(idx) suf_idx_len = suf_idx_len + 1 suf_idx[suf_idx_len] = idx if suf_idx_len == 1 then suf_sum[suf_idx_len] = a[idx] else suf_sum[suf_idx_len] = getgcd(suf_sum[suf_idx_len - 1], a[idx]) end end local function pop() if pre_idx_len == 0 then pre_sum[1] = a[suf_idx[suf_idx_len]] for i = 2, suf_idx_len - 1 do local j = suf_idx[suf_idx_len + 1 - i] pre_sum[i] = getgcd(pre_sum[i - 1], a[j]) end pre_idx_len = suf_idx_len - 1 suf_idx_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_idx_len] elseif suf_idx_len == 0 then return pre_sum[pre_idx_len] else return getgcd(suf_sum[suf_idx_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 right <= n and 1LL < cur do right = right + 1 if right <= n then push(right) end cur = query() end ret = ret + n + 1 - right pop() end print(ret)