結果

問題 No.1036 Make One With GCD 2
ユーザー tamatotamato
提出日時 2020-04-24 22:35:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,761 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 247,832 KB
最終ジャッジ日時 2024-11-07 02:48:45
合計ジャッジ時間 40,546 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,405 ms
245,704 KB
testcase_01 AC 1,433 ms
222,444 KB
testcase_02 AC 889 ms
241,396 KB
testcase_03 AC 257 ms
106,648 KB
testcase_04 AC 485 ms
140,380 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 440 ms
135,620 KB
testcase_08 AC 362 ms
115,776 KB
testcase_09 AC 1,640 ms
218,976 KB
testcase_10 AC 1,499 ms
209,536 KB
testcase_11 AC 1,635 ms
221,620 KB
testcase_12 AC 1,543 ms
210,784 KB
testcase_13 AC 1,808 ms
233,412 KB
testcase_14 AC 1,795 ms
235,416 KB
testcase_15 AC 1,678 ms
225,912 KB
testcase_16 AC 1,688 ms
226,732 KB
testcase_17 AC 1,786 ms
231,192 KB
testcase_18 AC 65 ms
70,528 KB
testcase_19 AC 67 ms
70,912 KB
testcase_20 AC 71 ms
72,576 KB
testcase_21 AC 70 ms
71,936 KB
testcase_22 AC 1,666 ms
224,004 KB
testcase_23 AC 1,220 ms
165,536 KB
testcase_24 AC 1,724 ms
229,500 KB
testcase_25 AC 1,618 ms
216,212 KB
testcase_26 AC 1,669 ms
221,704 KB
testcase_27 AC 38 ms
52,480 KB
testcase_28 AC 39 ms
52,224 KB
testcase_29 AC 39 ms
52,352 KB
testcase_30 AC 40 ms
52,608 KB
testcase_31 AC 47 ms
60,928 KB
testcase_32 AC 51 ms
62,336 KB
testcase_33 AC 40 ms
52,480 KB
testcase_34 AC 49 ms
60,928 KB
testcase_35 AC 38 ms
52,224 KB
testcase_36 AC 39 ms
52,224 KB
testcase_37 AC 39 ms
52,608 KB
testcase_38 AC 825 ms
233,296 KB
testcase_39 AC 1,423 ms
241,040 KB
testcase_40 AC 1,199 ms
165,916 KB
testcase_41 TLE -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    #from math import gcd
    input = sys.stdin.readline

    # min
    def STfunc(a, b):
        # return gcd(a, b)
        if a < b:
            a, b = b, a
        if b == 0:
            return a
        while a % b:
            a, b = b, a%b
        return b

    # クエリは0-indexedで[l, r)
    class SparseTable():
        def __init__(self, A):
            # A: 処理したい数列
            self.N = len(A)
            self.K = self.N.bit_length() - 1
            self.table = [[0] * (self.K + 1) for _ in range(self.N)]
            for i, a in enumerate(A):
                self.table[i][0] = a
            for k in range(1, self.K + 1):
                for i in range(self.N):
                    j = i + (1 << (k - 1))
                    if j <= self.N - 1:
                        self.table[i][k] = STfunc(self.table[i][k - 1], self.table[j][k - 1])
                    # else:
                    #    self.table[i][k] = self.table[i][k-1]

        def query(self, l, r):
            # [l, r)の最小値を求める
            k = (r - l).bit_length() - 1
            return STfunc(self.table[l][k], self.table[r - (1 << k)][k])

    N = int(input())
    A = list(map(int, input().split()))

    ST = SparseTable(A)
    ans = 0
    for i in range(N):
        if A[i] == 1:
            ans += N - i
            continue
        if ST.query(i, N) != 1:
            continue
        ok = N-1
        ng = i
        mid = (ok + ng) // 2
        while ok - ng > 1:
            if ST.query(i, mid+1) == 1:
                ok = mid
            else:
                ng = mid
            mid = (ok+ng) // 2
        ans += N - ok
    print(ans)


if __name__ == '__main__':
    main()
0