結果

問題 No.1036 Make One With GCD 2
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-27 23:35:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 722 ms / 2,000 ms
コード長 1,190 bytes
コンパイル時間 861 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 270,880 KB
最終ジャッジ日時 2024-11-06 16:43:15
合計ジャッジ時間 19,241 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
189,912 KB
testcase_01 AC 362 ms
174,116 KB
testcase_02 AC 376 ms
235,916 KB
testcase_03 AC 111 ms
100,736 KB
testcase_04 AC 140 ms
121,472 KB
testcase_05 AC 40 ms
52,224 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 214 ms
102,528 KB
testcase_08 AC 183 ms
103,808 KB
testcase_09 AC 530 ms
173,600 KB
testcase_10 AC 470 ms
161,504 KB
testcase_11 AC 517 ms
174,004 KB
testcase_12 AC 463 ms
161,916 KB
testcase_13 AC 683 ms
177,876 KB
testcase_14 AC 722 ms
188,432 KB
testcase_15 AC 679 ms
174,004 KB
testcase_16 AC 685 ms
173,980 KB
testcase_17 AC 676 ms
177,060 KB
testcase_18 AC 71 ms
67,968 KB
testcase_19 AC 77 ms
70,144 KB
testcase_20 AC 80 ms
72,064 KB
testcase_21 AC 80 ms
71,808 KB
testcase_22 AC 658 ms
173,484 KB
testcase_23 AC 489 ms
138,112 KB
testcase_24 AC 676 ms
176,808 KB
testcase_25 AC 622 ms
161,532 KB
testcase_26 AC 676 ms
170,424 KB
testcase_27 AC 42 ms
52,224 KB
testcase_28 AC 41 ms
52,224 KB
testcase_29 AC 41 ms
52,096 KB
testcase_30 AC 40 ms
52,096 KB
testcase_31 AC 44 ms
53,248 KB
testcase_32 AC 45 ms
53,632 KB
testcase_33 AC 42 ms
52,352 KB
testcase_34 AC 45 ms
53,248 KB
testcase_35 AC 42 ms
52,096 KB
testcase_36 AC 42 ms
52,608 KB
testcase_37 AC 41 ms
52,224 KB
testcase_38 AC 356 ms
270,880 KB
testcase_39 AC 331 ms
190,924 KB
testcase_40 AC 508 ms
137,856 KB
testcase_41 AC 380 ms
190,544 KB
testcase_42 AC 368 ms
190,424 KB
testcase_43 AC 373 ms
209,228 KB
testcase_44 AC 367 ms
193,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

class SWAG:

    def __init__(self,f):
        self.st1 = []
        self.st2 = []
        self.rst1 = []
        self.rst2 = []
        self.f = f


    def calc_all(self):
        calc = 0
        if self.st1:
            calc = self.f(calc,self.rst1[-1])

        if self.st2:
            calc = self.f(calc,self.rst2[-1])
        return calc


    def pop_front(self):
        if self.st1 == []:
            self.st1 = self.st2[::-1]
            self.rst1 = self.st1[:]
            for i in range(1,len(self.st1)):
                self.rst1[i] = self.f(self.rst1[i-1],self.st1[i])
            self.st2 = []
            self.rst2 = []

        self.st1.pop()
        self.rst1.pop()

    def push_back(self,val):
        if self.st2 == []:
            self.rst2.append(val)
        else:
            self.rst2.append(self.f(self.rst2[-1],val))
        self.st2.append(val)


    
n = int(input())
A = list(map(int,input().split()))
swag = SWAG(gcd)
ans = 0
now = 0
for i,a in enumerate(A):
    while now < n and swag.calc_all() != 1:
        swag.push_back(A[now])
        now += 1
    if swag.calc_all() == 1:
        ans += n-now+1
    swag.pop_front()
print(ans)
0