結果

問題 No.1036 Make One With GCD 2
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-04-26 11:29:14
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,043 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 362,596 KB
最終ジャッジ日時 2024-11-16 05:32:29
合計ジャッジ時間 75,458 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,526 ms
193,116 KB
testcase_01 AC 252 ms
283,172 KB
testcase_02 AC 477 ms
164,204 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 38 ms
158,212 KB
testcase_06 AC 38 ms
59,780 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 AC 907 ms
243,904 KB
testcase_10 AC 881 ms
176,128 KB
testcase_11 AC 893 ms
188,252 KB
testcase_12 AC 740 ms
175,912 KB
testcase_13 AC 1,240 ms
241,008 KB
testcase_14 AC 1,243 ms
193,536 KB
testcase_15 AC 1,176 ms
235,708 KB
testcase_16 AC 1,127 ms
180,880 KB
testcase_17 AC 1,184 ms
234,424 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,135 ms
179,696 KB
testcase_23 AC 899 ms
200,560 KB
testcase_24 AC 1,186 ms
182,712 KB
testcase_25 AC 1,085 ms
220,780 KB
testcase_26 AC 1,108 ms
177,300 KB
testcase_27 TLE -
testcase_28 TLE -
testcase_29 AC 38 ms
52,636 KB
testcase_30 AC 38 ms
53,156 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 37 ms
52,680 KB
testcase_36 AC 38 ms
53,348 KB
testcase_37 AC 38 ms
52,552 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 AC 846 ms
141,108 KB
testcase_41 AC 1,281 ms
189,420 KB
testcase_42 AC 1,234 ms
189,788 KB
testcase_43 AC 1,183 ms
190,156 KB
testcase_44 AC 1,272 ms
362,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys;input=sys.stdin.readline
def gcd(a,b):
    if b == 0:
        return a
    return gcd(b,a%b)
if __name__ == '__main__':
    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:
                continue
            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)
0