結果

問題 No.1036 Make One With GCD 2
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-04-26 12:26:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,165 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 189,592 KB
最終ジャッジ日時 2024-11-16 20:08:14
合計ジャッジ時間 25,573 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 749 ms
185,876 KB
testcase_01 AC 281 ms
182,108 KB
testcase_02 AC 446 ms
157,292 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 39 ms
51,840 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 639 ms
180,772 KB
testcase_10 AC 621 ms
168,924 KB
testcase_11 AC 669 ms
181,500 KB
testcase_12 AC 611 ms
169,108 KB
testcase_13 AC 827 ms
177,036 KB
testcase_14 AC 857 ms
186,604 KB
testcase_15 AC 825 ms
173,368 KB
testcase_16 AC 801 ms
173,588 KB
testcase_17 AC 925 ms
176,484 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 811 ms
172,740 KB
testcase_23 AC 676 ms
140,416 KB
testcase_24 AC 838 ms
175,552 KB
testcase_25 AC 738 ms
161,812 KB
testcase_26 AC 794 ms
170,232 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 35 ms
51,968 KB
testcase_30 AC 35 ms
51,968 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 37 ms
52,096 KB
testcase_36 AC 38 ms
52,096 KB
testcase_37 AC 40 ms
51,968 KB
testcase_38 WA -
testcase_39 AC 1,260 ms
189,592 KB
testcase_40 AC 623 ms
140,416 KB
testcase_41 AC 1,116 ms
189,348 KB
testcase_42 AC 1,092 ms
189,476 KB
testcase_43 AC 975 ms
189,204 KB
testcase_44 AC 1,195 ms
189,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys;input=sys.stdin.readline
def main():
    def 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

    n = int(input())
    X = list(map(int, input().split()))
    num = 2**(n-1).bit_length()
    seg=[0]*2*num
    for i in range(n):
        seg[i+num-1]=X[i]
    for i in range(num-2,-1,-1) :
        seg[i]=gcd(seg[2*i+1],seg[2*i+2]) 

    j = 1
    r = 0
    for i in range(n):
        while j <= n:
            p, q = i, j
            res=0
#            if q<=p:
#                break
            p += num-1
            q += num-2
            while q-p>1:
                if p&1 == 0:
                    res = gcd(res,seg[p])
                if q&1 == 1:
                    res = gcd(res,seg[q])
                    q -= 1
                p = p//2
                q = (q-1)//2
            if p == q:
                res = gcd(res,seg[p])
            else:
                res = gcd(gcd(res,seg[p]),seg[q])
            if res == 1:
                break
            j += 1
        r += n+1-j
    print(r)


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