結果

問題 No.1036 Make One With GCD 2
ユーザー neterukunneterukun
提出日時 2020-04-25 00:06:28
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,848 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 260,444 KB
最終ジャッジ日時 2024-11-07 03:18:14
合計ジャッジ時間 9,015 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 523 ms
256,376 KB
testcase_01 AC 476 ms
189,680 KB
testcase_02 AC 486 ms
223,128 KB
testcase_03 AC 173 ms
126,524 KB
testcase_04 AC 270 ms
171,680 KB
testcase_05 AC 39 ms
53,672 KB
testcase_06 AC 40 ms
53,344 KB
testcase_07 AC 250 ms
133,164 KB
testcase_08 AC 209 ms
128,184 KB
testcase_09 TLE -
testcase_10 AC 1,991 ms
232,608 KB
testcase_11 TLE -
testcase_12 AC 1,983 ms
233,220 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 66 ms
69,948 KB
testcase_19 AC 66 ms
70,864 KB
testcase_20 AC 68 ms
72,688 KB
testcase_21 AC 67 ms
72,204 KB
testcase_22 TLE -
testcase_23 AC 1,538 ms
186,232 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 1,976 ms
230,572 KB
testcase_27 AC 39 ms
52,936 KB
testcase_28 AC 38 ms
52,996 KB
testcase_29 AC 38 ms
53,944 KB
testcase_30 AC 40 ms
52,924 KB
testcase_31 AC 46 ms
61,008 KB
testcase_32 AC 47 ms
62,356 KB
testcase_33 AC 40 ms
54,544 KB
testcase_34 AC 46 ms
61,776 KB
testcase_35 AC 40 ms
54,540 KB
testcase_36 AC 39 ms
52,540 KB
testcase_37 AC 40 ms
53,532 KB
testcase_38 AC 463 ms
259,416 KB
testcase_39 AC 562 ms
260,276 KB
testcase_40 AC 1,482 ms
184,300 KB
testcase_41 AC 1,594 ms
260,444 KB
testcase_42 AC 1,512 ms
259,844 KB
testcase_43 AC 1,346 ms
259,808 KB
testcase_44 AC 1,497 ms
259,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a: int, b: int) -> int:
    """a, bの最大公約数(greatest common divisor: GCD)を求める
    計算量: O(log(min(a, b)))
    """
    if b == 0:
        return a
    return gcd(b, a%b)


class SparseTable:
    """区間取得クエリをO(1)で答えるデータ構造をO(NlogN)で構築する
    query(l, r): 区間[l, r)に対するクエリに答える
    """
    def __init__(self, array):
        n = len(array)
        self.row_size = n.bit_length()

        # log_tableを構築する
        # log_table = [0, 0, 1, 1, 2, 2, 2, 2, ...]
        self.log_table = [0] * (n + 1)
        for i in range(2, n + 1):
            self.log_table[i] = self.log_table[i//2] + 1

        # sparse_tableを構築する
        self.sparse_table = [[0] * n for _ in range(self.row_size)]
        for i in range(n):
            self.sparse_table[0][i] = array[i]
        for row in range(1, self.row_size):
            for i in range(n - (1 << row) + 1):
                self.sparse_table[row][i] = self._merge(self.sparse_table[row - 1][i], \
                                            self.sparse_table[row - 1][i + (1 << row - 1)])

    def _merge(self, num1, num2):
        """冪等律と結合律を満たす演算を行う"""
        return gcd(num1, num2)

    def query(self, l, r):
        """区間[l, r)に対するクエリに答える"""
        row = self.log_table[r - l]
        return self._merge(self.sparse_table[row][l], self.sparse_table[row][r - (1 << row)])

import sys
input = sys.stdin.readline
      
n = int(input())
a = list(map(int, input().split()))

sp = SparseTable(a)
r = 0
ans = 0
for l in range(0, n):
    r = max(l + 1, r)
    while True:
        if r == n + 1:
            break
        if sp.query(l, r) != 1:
            r += 1
        else:
            break
    ans += n - r + 1
    
print(ans)
0