結果

問題 No.1036 Make One With GCD 2
ユーザー neterukunneterukun
提出日時 2020-04-24 22:04:20
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,814 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 278,464 KB
最終ジャッジ日時 2024-11-07 02:25:30
合計ジャッジ時間 47,315 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 813 ms
278,464 KB
testcase_01 AC 743 ms
189,512 KB
testcase_02 AC 748 ms
241,008 KB
testcase_03 AC 245 ms
128,804 KB
testcase_04 AC 413 ms
177,952 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 39 ms
52,352 KB
testcase_07 AC 339 ms
136,288 KB
testcase_08 AC 297 ms
132,480 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 64 ms
68,836 KB
testcase_19 AC 66 ms
68,860 KB
testcase_20 AC 67 ms
69,964 KB
testcase_21 AC 76 ms
69,120 KB
testcase_22 TLE -
testcase_23 AC 1,664 ms
195,072 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 38 ms
52,224 KB
testcase_28 AC 39 ms
52,224 KB
testcase_29 AC 39 ms
52,620 KB
testcase_30 AC 40 ms
52,608 KB
testcase_31 AC 52 ms
63,232 KB
testcase_32 AC 52 ms
64,000 KB
testcase_33 AC 39 ms
52,736 KB
testcase_34 AC 55 ms
65,152 KB
testcase_35 AC 38 ms
52,608 KB
testcase_36 AC 39 ms
52,480 KB
testcase_37 AC 40 ms
52,224 KB
testcase_38 AC 764 ms
272,172 KB
testcase_39 AC 833 ms
272,056 KB
testcase_40 AC 1,775 ms
195,072 KB
testcase_41 TLE -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

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)])

      
n = int(input())
a = list(map(int, input().split())) + [1]
n += 1

sp = SparseTable(a)
ans = 0
for i in range(n):
    ok = n
    ng = i
    while abs(ok - ng) > 1:
        mid = (ok + ng) // 2
        if sp.query(i, mid) == 1:
            ok = mid
        else:
            ng = mid
    ans += (n - ok)
print(ans)
0