結果

問題 No.1036 Make One With GCD 2
ユーザー convexineqconvexineq
提出日時 2020-04-24 22:09:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,938 ms / 2,000 ms
コード長 1,752 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 73,576 KB
最終ジャッジ日時 2024-11-07 02:31:48
合計ジャッジ時間 42,162 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,435 ms
65,644 KB
testcase_01 AC 1,342 ms
42,144 KB
testcase_02 AC 1,083 ms
73,576 KB
testcase_03 AC 221 ms
14,432 KB
testcase_04 AC 354 ms
16,296 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
11,008 KB
testcase_07 AC 432 ms
23,876 KB
testcase_08 AC 363 ms
21,684 KB
testcase_09 AC 1,413 ms
64,244 KB
testcase_10 AC 1,311 ms
60,424 KB
testcase_11 AC 1,444 ms
65,320 KB
testcase_12 AC 1,346 ms
60,864 KB
testcase_13 AC 1,604 ms
63,096 KB
testcase_14 AC 1,623 ms
63,600 KB
testcase_15 AC 1,496 ms
60,160 KB
testcase_16 AC 1,532 ms
60,820 KB
testcase_17 AC 1,585 ms
62,056 KB
testcase_18 AC 34 ms
10,752 KB
testcase_19 AC 35 ms
10,880 KB
testcase_20 AC 39 ms
11,264 KB
testcase_21 AC 39 ms
11,136 KB
testcase_22 AC 1,522 ms
59,756 KB
testcase_23 AC 1,120 ms
46,684 KB
testcase_24 AC 1,530 ms
61,684 KB
testcase_25 AC 1,444 ms
56,984 KB
testcase_26 AC 1,463 ms
58,732 KB
testcase_27 AC 32 ms
10,752 KB
testcase_28 AC 32 ms
11,008 KB
testcase_29 AC 31 ms
10,880 KB
testcase_30 AC 32 ms
10,752 KB
testcase_31 AC 32 ms
10,752 KB
testcase_32 AC 32 ms
10,752 KB
testcase_33 AC 32 ms
10,752 KB
testcase_34 AC 31 ms
11,008 KB
testcase_35 AC 32 ms
10,880 KB
testcase_36 AC 33 ms
11,008 KB
testcase_37 AC 31 ms
11,008 KB
testcase_38 AC 1,056 ms
65,552 KB
testcase_39 AC 1,938 ms
65,716 KB
testcase_40 AC 1,123 ms
46,640 KB
testcase_41 AC 1,689 ms
65,768 KB
testcase_42 AC 1,659 ms
65,644 KB
testcase_43 AC 1,594 ms
65,640 KB
testcase_44 AC 1,634 ms
65,768 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