結果

問題 No.1036 Make One With GCD 2
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-04-26 02:49:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,282 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 190,464 KB
最終ジャッジ日時 2024-11-08 19:51:04
合計ジャッジ時間 32,097 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,740 ms
186,480 KB
testcase_01 AC 250 ms
182,416 KB
testcase_02 AC 497 ms
157,648 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 850 ms
181,512 KB
testcase_10 AC 824 ms
169,680 KB
testcase_11 AC 858 ms
181,680 KB
testcase_12 AC 758 ms
170,340 KB
testcase_13 AC 1,133 ms
177,768 KB
testcase_14 AC 1,139 ms
187,076 KB
testcase_15 AC 1,131 ms
173,984 KB
testcase_16 AC 1,115 ms
174,324 KB
testcase_17 AC 1,169 ms
176,704 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1,103 ms
173,468 KB
testcase_23 AC 870 ms
140,416 KB
testcase_24 AC 1,227 ms
176,424 KB
testcase_25 AC 1,053 ms
161,788 KB
testcase_26 AC 1,096 ms
170,596 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 38 ms
52,224 KB
testcase_30 AC 38 ms
52,096 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 39 ms
52,480 KB
testcase_36 AC 39 ms
52,608 KB
testcase_37 AC 38 ms
52,352 KB
testcase_38 WA -
testcase_39 TLE -
testcase_40 AC 873 ms
140,800 KB
testcase_41 AC 1,335 ms
189,952 KB
testcase_42 AC 1,256 ms
189,828 KB
testcase_43 AC 1,275 ms
189,948 KB
testcase_44 AC 1,345 ms
190,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys;input=sys.stdin.readline
from math import gcd
def gcd(a,b):
    if b == 0:
        return a
    return gcd(b,a%b)

class SegTree:
    def __init__(self, init_val, n, ide_ele, seg_func):
        self.segfunc = seg_func
        self.num = 2**(n-1).bit_length()
        self.ide_ele = ide_ele
        self.seg=[self.ide_ele]*2*self.num
        for i in range(n):
            self.seg[i+self.num-1]=init_val[i]    
        for i in range(self.num-2,-1,-1) :
            self.seg[i]=self.segfunc(self.seg[2*i+1],self.seg[2*i+2]) 
        
    def query(self, p, q):
        p += self.num-1
        q += self.num-2
        res=self.ide_ele
        while q-p>1:
            if p&1 == 0:
                res = self.segfunc(res,self.seg[p])
            if q&1 == 1:
                res = self.segfunc(res,self.seg[q])
                q -= 1
            p = p//2
            q = (q-1)//2
        if p == q:
            res = self.segfunc(res,self.seg[p])
        else:
            res = self.segfunc(self.segfunc(res,self.seg[p]),self.seg[q])
        return res

n = int(input())
X = list(map(int, input().split()))
st = SegTree(X, n, 0, gcd)
j = 1
r = 0
for i in range(n):
    while j <= n:
        if st.query(i, j) == 1:
            break
        j += 1
    r += n+1-j
print(r)
0