結果

問題 No.1036 Make One With GCD 2
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-04-26 03:06:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,042 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 190,136 KB
最終ジャッジ日時 2024-11-08 20:19:06
合計ジャッジ時間 30,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,428 ms
186,428 KB
testcase_01 AC 287 ms
182,184 KB
testcase_02 AC 513 ms
158,100 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 40 ms
52,480 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 891 ms
181,000 KB
testcase_10 AC 836 ms
169,484 KB
testcase_11 AC 888 ms
181,656 KB
testcase_12 AC 728 ms
169,900 KB
testcase_13 AC 1,153 ms
177,200 KB
testcase_14 AC 1,173 ms
186,896 KB
testcase_15 AC 1,128 ms
173,540 KB
testcase_16 AC 1,110 ms
174,008 KB
testcase_17 AC 1,177 ms
176,760 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1,084 ms
173,288 KB
testcase_23 AC 833 ms
140,800 KB
testcase_24 AC 1,129 ms
176,360 KB
testcase_25 AC 1,002 ms
161,860 KB
testcase_26 AC 1,055 ms
170,144 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 39 ms
51,968 KB
testcase_30 AC 38 ms
52,224 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 40 ms
52,352 KB
testcase_36 AC 44 ms
52,352 KB
testcase_37 AC 44 ms
52,096 KB
testcase_38 WA -
testcase_39 TLE -
testcase_40 AC 811 ms
140,672 KB
testcase_41 AC 1,287 ms
189,852 KB
testcase_42 AC 1,224 ms
189,900 KB
testcase_43 AC 1,186 ms
190,028 KB
testcase_44 AC 1,273 ms
190,136 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:
#                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)
0