結果

問題 No.1036 Make One With GCD 2
ユーザー convexineqconvexineq
提出日時 2020-04-24 22:10:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 894 ms / 2,000 ms
コード長 1,752 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 171,504 KB
最終ジャッジ日時 2024-09-16 13:18:04
合計ジャッジ時間 17,280 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 326 ms
143,392 KB
testcase_01 AC 279 ms
131,348 KB
testcase_02 AC 354 ms
171,504 KB
testcase_03 AC 84 ms
87,808 KB
testcase_04 AC 107 ms
108,544 KB
testcase_05 AC 46 ms
53,632 KB
testcase_06 AC 46 ms
54,016 KB
testcase_07 AC 430 ms
106,240 KB
testcase_08 AC 374 ms
100,736 KB
testcase_09 AC 469 ms
133,248 KB
testcase_10 AC 427 ms
132,096 KB
testcase_11 AC 457 ms
133,632 KB
testcase_12 AC 429 ms
131,840 KB
testcase_13 AC 894 ms
143,360 KB
testcase_14 AC 632 ms
143,872 KB
testcase_15 AC 603 ms
141,824 KB
testcase_16 AC 600 ms
142,080 KB
testcase_17 AC 624 ms
142,464 KB
testcase_18 AC 66 ms
66,816 KB
testcase_19 AC 73 ms
69,376 KB
testcase_20 AC 83 ms
73,984 KB
testcase_21 AC 81 ms
73,856 KB
testcase_22 AC 593 ms
140,800 KB
testcase_23 AC 466 ms
132,736 KB
testcase_24 AC 609 ms
142,336 KB
testcase_25 AC 567 ms
139,520 KB
testcase_26 AC 588 ms
140,800 KB
testcase_27 AC 45 ms
54,272 KB
testcase_28 AC 45 ms
53,760 KB
testcase_29 AC 46 ms
54,272 KB
testcase_30 AC 45 ms
54,016 KB
testcase_31 AC 47 ms
54,656 KB
testcase_32 AC 48 ms
55,168 KB
testcase_33 AC 45 ms
54,016 KB
testcase_34 AC 47 ms
54,400 KB
testcase_35 AC 46 ms
54,528 KB
testcase_36 AC 46 ms
53,760 KB
testcase_37 AC 45 ms
54,016 KB
testcase_38 AC 311 ms
170,888 KB
testcase_39 AC 318 ms
145,280 KB
testcase_40 AC 468 ms
132,224 KB
testcase_41 AC 375 ms
145,152 KB
testcase_42 AC 372 ms
145,408 KB
testcase_43 AC 365 ms
149,128 KB
testcase_44 AC 369 ms
145,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""
sliding window aggrigation
モノイドのqueueを管理する
fold_all: すべてをたたみこむ
popleft
append
"""
from itertools import accumulate
from collections import deque
class SWAG:
    def __init__(self, operator_M, e_M):
        self.op_M = operator_M
        self.op_rev = lambda x,y: self.op_M(y,x)
        self.e_M = e_M
        self.q = deque([])
        self.accL = []
        self.accR = e_M
        self.L = self.R = 0

    def build(self,lst):
        self.q = deque(lst)
        self.L = len(lst)
        self.accL = list(accumulate(reversed(lst),self.op_rev))

    def __len__(self):
        return self.L + self.R

    def fold_all(self):
        if self.L: return self.op_M(self.accL[-1],self.accR)
        else: return self.accR

    def append(self,x):
        self.q.append(x)
        self.accR = self.op_M(self.accR,x)
        self.R += 1
    
    def popleft(self):
        if self.L:
            self.accL.pop()
            self.L -= 1
            return self.q.popleft()
        elif self.R:
            v = self.q.popleft()
            self.L,self.R = self.R-1,0
            self.accL = list(accumulate(reversed(self.q),self.op_rev))
            self.accR = self.e_M
            return v
        else:
            assert 0

    def __repr__(self):
        return "{}\naccL:{}, accR:{}".format(self.q,self.accL,self.accR)




# coding: utf-8
# Your code here!
import sys
readline = sys.stdin.readline
read = sys.stdin.read


n,*a = [int(i) for i in read().split()]

from math import gcd
q = SWAG(gcd,0)
ans = r = 0
for l,al in enumerate(a):
    if len(q): q.popleft()
    else: r = l
    while r<n and gcd(q.fold_all(),a[r]) != 1:
        q.append(a[r])
        r += 1
    ans += n-r

print(ans)        










0