結果

問題 No.1036 Make One With GCD 2
ユーザー hedwig100hedwig100
提出日時 2020-04-25 12:11:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,029 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 199,772 KB
最終ジャッジ日時 2024-11-07 04:12:22
合計ジャッジ時間 19,680 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 832 ms
196,288 KB
testcase_01 AC 258 ms
161,408 KB
testcase_02 AC 558 ms
158,996 KB
testcase_03 AC 103 ms
104,120 KB
testcase_04 AC 127 ms
116,700 KB
testcase_05 AC 50 ms
60,372 KB
testcase_06 AC 50 ms
61,112 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 450 ms
158,740 KB
testcase_10 AC 447 ms
161,348 KB
testcase_11 AC 455 ms
159,460 KB
testcase_12 AC 429 ms
161,504 KB
testcase_13 AC 642 ms
186,488 KB
testcase_14 AC 649 ms
196,128 KB
testcase_15 AC 604 ms
182,212 KB
testcase_16 AC 636 ms
183,636 KB
testcase_17 AC 622 ms
186,160 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 596 ms
181,116 KB
testcase_23 AC 471 ms
139,660 KB
testcase_24 AC 628 ms
184,276 KB
testcase_25 AC 575 ms
168,768 KB
testcase_26 AC 601 ms
179,012 KB
testcase_27 AC 52 ms
60,288 KB
testcase_28 AC 49 ms
60,736 KB
testcase_29 AC 50 ms
60,288 KB
testcase_30 AC 49 ms
60,288 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 50 ms
60,032 KB
testcase_36 AC 49 ms
60,288 KB
testcase_37 AC 50 ms
60,672 KB
testcase_38 AC 650 ms
199,660 KB
testcase_39 AC 655 ms
199,496 KB
testcase_40 AC 473 ms
139,912 KB
testcase_41 AC 718 ms
199,372 KB
testcase_42 AC 694 ms
199,516 KB
testcase_43 AC 788 ms
199,772 KB
testcase_44 AC 808 ms
199,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 9
MOD = 10 **9 + 7
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from math import gcd
from collections import defaultdict
from copy import deepcopy

class SegmentTree():

    def __init__(self,init_val,func,unit): #init_valは長さnの配列 O(2*n)
        n = len(init_val)
        self.unit = unit #unitは単位元
        self.size = pow(2,n - 1).bit_length() #n以上の最小の2のべき乗
        self.seg = [self.unit] * (2 * self.size) #セグメントツリー本体
        self.f = func #セグ木により異なる関数
        
        for i in range(n):
            self.seg[i + self.size - 1] = init_val[i] 
        
        for i in range(self.size - 2,-1,-1):
            self.seg[i] = self.f(self.seg[2 * i + 1],self.seg[2 * i + 2])
    
    def update(self,k,x): #k番目の要素をxに変更する O(logN)
        k += self.size - 1
        self.seg[k] = x
        while k:
            k = (k - 1)//2
            self.seg[k] = self.f(self.seg[2 * k + 1],self.seg[2 * k + 2])
    
    def query(self,p,q): #[p,q)のクエリに答える 半開区間であることに注意 O(logN)
        if q <= p:
            return self.unit

        p += self.size - 1 
        q += self.size - 2
        res = self.unit

        while q - p > 1:

            if (p&1) == 0:
                res = self.f(res,self.seg[p])

            if (q&1) == 1:
                res = self.f(res,self.seg[q])
                q -= 1

            p //= 2
            q = (q - 1)//2
        
        if p == q:
            res = self.f(res,self.seg[p])
        else:
            res = self.f(self.f(res,self.seg[p]),self.seg[q])
        
        return res

def main():
    n = int(input())
    a = list(map(int,input().split()))

    st = SegmentTree(a,gcd,0)
    r = 0
    ans = 0
    for l in range(n):
        while r < n and st.query(l,r + 1) != 1:
            r += 1
        ans += n - r
        if l + 1 == r:
            r += 1
    print(ans)
if __name__=='__main__':
    main()

0