結果

問題 No.1036 Make One With GCD 2
ユーザー H3PO4H3PO4
提出日時 2021-10-02 12:38:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 754 ms / 2,000 ms
コード長 2,105 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 177,888 KB
最終ジャッジ日時 2024-07-20 06:17:03
合計ジャッジ時間 20,612 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 714 ms
158,756 KB
testcase_01 AC 337 ms
176,460 KB
testcase_02 AC 466 ms
155,428 KB
testcase_03 AC 125 ms
109,056 KB
testcase_04 AC 198 ms
124,672 KB
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 36 ms
52,224 KB
testcase_07 AC 188 ms
117,632 KB
testcase_08 AC 162 ms
109,312 KB
testcase_09 AC 475 ms
175,208 KB
testcase_10 AC 438 ms
162,192 KB
testcase_11 AC 466 ms
175,976 KB
testcase_12 AC 465 ms
162,952 KB
testcase_13 AC 587 ms
160,296 KB
testcase_14 AC 600 ms
161,696 KB
testcase_15 AC 539 ms
177,872 KB
testcase_16 AC 557 ms
167,724 KB
testcase_17 AC 568 ms
163,504 KB
testcase_18 AC 63 ms
66,432 KB
testcase_19 AC 68 ms
71,168 KB
testcase_20 AC 73 ms
73,856 KB
testcase_21 AC 74 ms
73,472 KB
testcase_22 AC 563 ms
177,888 KB
testcase_23 AC 438 ms
145,344 KB
testcase_24 AC 554 ms
163,504 KB
testcase_25 AC 532 ms
168,432 KB
testcase_26 AC 554 ms
177,376 KB
testcase_27 AC 35 ms
51,968 KB
testcase_28 AC 35 ms
52,224 KB
testcase_29 AC 36 ms
52,224 KB
testcase_30 AC 35 ms
52,480 KB
testcase_31 AC 37 ms
53,120 KB
testcase_32 AC 38 ms
53,504 KB
testcase_33 AC 37 ms
52,480 KB
testcase_34 AC 40 ms
52,992 KB
testcase_35 AC 38 ms
52,480 KB
testcase_36 AC 39 ms
52,352 KB
testcase_37 AC 42 ms
52,224 KB
testcase_38 AC 754 ms
157,840 KB
testcase_39 AC 583 ms
157,840 KB
testcase_40 AC 429 ms
144,968 KB
testcase_41 AC 636 ms
158,084 KB
testcase_42 AC 615 ms
157,836 KB
testcase_43 AC 671 ms
157,712 KB
testcase_44 AC 702 ms
157,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from math import gcd

input = sys.stdin.buffer.readline


class SegTree:
    """
    https://qiita.com/takayg1/items/c811bd07c21923d7ec69 から拝借しています。
    init(init_val, ide_ele): 配列init_valで初期化 O(N)
    update(k, x): k番目の値をxに更新 O(logN)
    query(l, r): 区間[l, r)をsegfuncしたものを返す O(logN)
    """

    def __init__(self, init_val, segfunc, ide_ele):
        """
        init_val: 配列の初期値
        segfunc: 区間にしたい操作
        ide_ele: 単位元
        n: 要素数
        num: n以上の最小の2のべき乗
        tree: セグメント木(1-index)
        """
        n = len(init_val)
        self.segfunc = segfunc
        self.ide_ele = ide_ele
        self.num = 1 << (n - 1).bit_length()
        self.tree = [ide_ele] * 2 * self.num
        # 配列の値を葉にセット
        for i in range(n):
            self.tree[self.num + i] = init_val[i]
        # 構築していく
        for i in range(self.num - 1, 0, -1):
            self.tree[i] = self.segfunc(self.tree[2 * i], self.tree[2 * i + 1])

    def update(self, k, x):
        """
        k番目の値をxに更新
        k: index(0-index)
        x: update value
        """
        k += self.num
        self.tree[k] = x
        while k > 1:
            self.tree[k >> 1] = self.segfunc(self.tree[k], self.tree[k ^ 1])
            k >>= 1

    def query(self, l, r):
        """
        [l, r)のsegfuncしたものを得る
        l: index(0-index)
        r: index(0-index)
        """
        res = self.ide_ele

        l += self.num
        r += self.num
        while l < r:
            if l & 1:
                res = self.segfunc(res, self.tree[l])
                l += 1
            if r & 1:
                res = self.segfunc(res, self.tree[r - 1])
            l >>= 1
            r >>= 1
        return res


N = int(input())
A = tuple(map(int, input().split()))
seg = SegTree(A, gcd, 0)

l = 0
ans = 0
for r in range(1, N + 1):
    while seg.query(l, r) == 1 and r - l >= 1:
        l += 1
    ans += l
print(ans)
0