結果

問題 No.1036 Make One With GCD 2
ユーザー hedwig100hedwig100
提出日時 2020-04-25 21:14:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 638 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 255,808 KB
最終ジャッジ日時 2024-09-16 13:58:09
合計ジャッジ時間 16,474 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 461 ms
252,212 KB
testcase_01 AC 373 ms
248,076 KB
testcase_02 AC 496 ms
224,280 KB
testcase_03 AC 131 ms
122,880 KB
testcase_04 AC 199 ms
169,856 KB
testcase_05 AC 36 ms
52,096 KB
testcase_06 AC 36 ms
52,352 KB
testcase_07 AC 232 ms
131,272 KB
testcase_08 AC 197 ms
126,336 KB
testcase_09 AC 449 ms
244,940 KB
testcase_10 AC 420 ms
228,744 KB
testcase_11 AC 454 ms
247,436 KB
testcase_12 AC 421 ms
229,552 KB
testcase_13 AC 545 ms
225,952 KB
testcase_14 AC 571 ms
249,740 KB
testcase_15 AC 517 ms
221,668 KB
testcase_16 AC 523 ms
221,876 KB
testcase_17 AC 536 ms
224,504 KB
testcase_18 AC 53 ms
64,384 KB
testcase_19 AC 55 ms
66,048 KB
testcase_20 AC 57 ms
67,456 KB
testcase_21 AC 55 ms
66,816 KB
testcase_22 AC 517 ms
220,780 KB
testcase_23 AC 389 ms
181,248 KB
testcase_24 AC 599 ms
224,404 KB
testcase_25 AC 497 ms
208,828 KB
testcase_26 AC 516 ms
218,268 KB
testcase_27 AC 37 ms
52,224 KB
testcase_28 AC 38 ms
52,096 KB
testcase_29 AC 37 ms
52,096 KB
testcase_30 AC 38 ms
51,840 KB
testcase_31 AC 43 ms
59,008 KB
testcase_32 AC 45 ms
59,520 KB
testcase_33 AC 37 ms
52,480 KB
testcase_34 AC 43 ms
59,392 KB
testcase_35 AC 38 ms
52,352 KB
testcase_36 AC 39 ms
52,096 KB
testcase_37 AC 37 ms
52,224 KB
testcase_38 AC 638 ms
239,292 KB
testcase_39 AC 481 ms
255,704 KB
testcase_40 AC 396 ms
181,504 KB
testcase_41 AC 461 ms
255,176 KB
testcase_42 AC 454 ms
255,052 KB
testcase_43 AC 446 ms
255,424 KB
testcase_44 AC 454 ms
255,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 9
MOD = 10 **9 + 7
import sys
input = sys.stdin.readline
from math import gcd

class SparseTable():
    def __init__(self,arr,func,unit):
        self.N = len(arr)
        self.K = self.N.bit_length()
        self.func = func
        self.unit = unit
        self.table = [self.unit] * (self.N * self.K)

        for i in range(self.N):
            self.table[i] = arr[i]
        for k in range(1,self.K):
            for i in range(self.N - (1<<(k - 1))):
                self.table[i + k*self.N] = self.func(self.table[i + (k - 1)*self.N],self.table[i + (1<<(k - 1)) + (k - 1)*self.N])
        
    def query(self,l,r):
        if l >= r:
            return self.unit
        k = (r - l).bit_length() - 1
        return self.func(self.table[l + k*self.N],self.table[r - (1<<k) + k*self.N])


n = int(input())
a = list(map(int,input().split()))
sp = SparseTable(a,gcd,0)

r = 0
ans = 0
for l in range(n):
    while r < n and sp.query(l,r + 1) != 1:
        r += 1
    ans += n - r
print(ans)      

0