結果

問題 No.1036 Make One With GCD 2
ユーザー brthyyjpbrthyyjp
提出日時 2020-06-08 04:43:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,482 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 182,352 KB
最終ジャッジ日時 2024-06-06 12:04:53
合計ジャッジ時間 21,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 709 ms
180,464 KB
testcase_01 AC 257 ms
156,036 KB
testcase_02 AC 618 ms
147,924 KB
testcase_03 AC 91 ms
99,584 KB
testcase_04 AC 131 ms
129,280 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 183 ms
112,384 KB
testcase_08 AC 161 ms
105,728 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 58 ms
64,512 KB
testcase_19 AC 58 ms
64,768 KB
testcase_20 AC 58 ms
65,280 KB
testcase_21 AC 59 ms
65,152 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 38 ms
51,968 KB
testcase_28 AC 38 ms
52,096 KB
testcase_29 AC 38 ms
52,352 KB
testcase_30 AC 38 ms
51,968 KB
testcase_31 AC 39 ms
52,864 KB
testcase_32 AC 40 ms
53,248 KB
testcase_33 AC 37 ms
52,352 KB
testcase_34 AC 37 ms
53,120 KB
testcase_35 AC 38 ms
52,096 KB
testcase_36 AC 37 ms
52,352 KB
testcase_37 AC 39 ms
52,224 KB
testcase_38 AC 754 ms
182,352 KB
testcase_39 AC 594 ms
181,912 KB
testcase_40 WA -
testcase_41 AC 546 ms
181,956 KB
testcase_42 AC 533 ms
181,704 KB
testcase_43 AC 575 ms
182,124 KB
testcase_44 AC 584 ms
181,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

def main():

    n = int(input())
    A = list(map(int, input().split()))

    import math
    def segfunc(x, y):
        return math.gcd(x, y)

    def init(init_val):
        # set_val
        for i in range(n):
            seg[i+num-1] = init_val[i]
        # built
        for i in range(num-2, -1, -1):
            seg[i] = segfunc(seg[2*i+1], seg[2*i+2])

    def update(k, x):
        k += num - 1
        seg[k] = x
        while k:
            k = (k-1)//2
            seg[k] = segfunc(seg[2*k+1], seg[2*k+2])

    def query(p, q):
        if q <= p:
            return ide_ele
        p += num - 1
        q += num - 2
        res = ide_ele
        while q-p>1:
            if p&1 == 0:
                res = segfunc(res, seg[p])
            if q&1 == 1:
                res = segfunc(res, seg[q])
                q -= 1
            p = p//2
            q = (q-1)//2
        if p == q:
            res = segfunc(res, seg[p])
        else:
            res = segfunc(segfunc(res, seg[p]), seg[q])
        return res

    # identity element
    ide_ele = 0

    # num: n以上の最小の2のべき乗
    num = 2**(n-1).bit_length()
    seg = [ide_ele]*2*num

    init(A)

    q = 0
    ans = 0
    for p in range(n):
        g =  query(p, q+1)
        while q < n and math.gcd(g, A[q]) != 1:
            q += 1
        ans += n-1-q+1
        if p == q:
            q += 1
    print(ans)

if __name__ == '__main__':
    main()
0