結果

問題 No.1036 Make One With GCD 2
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-04-26 11:28:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,040 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 190,124 KB
最終ジャッジ日時 2024-11-16 05:28:45
合計ジャッジ時間 33,187 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,467 ms
186,296 KB
testcase_01 AC 250 ms
181,632 KB
testcase_02 AC 476 ms
157,568 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 37 ms
52,632 KB
testcase_06 AC 37 ms
53,164 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 851 ms
180,820 KB
testcase_10 AC 861 ms
169,356 KB
testcase_11 AC 887 ms
181,592 KB
testcase_12 AC 750 ms
169,076 KB
testcase_13 AC 1,211 ms
176,936 KB
testcase_14 AC 1,197 ms
187,060 KB
testcase_15 AC 1,115 ms
173,424 KB
testcase_16 AC 1,123 ms
173,772 KB
testcase_17 AC 1,232 ms
176,764 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 1,137 ms
172,920 KB
testcase_23 AC 890 ms
140,548 KB
testcase_24 AC 1,177 ms
175,760 KB
testcase_25 AC 1,026 ms
161,148 KB
testcase_26 AC 1,079 ms
170,288 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 38 ms
52,624 KB
testcase_30 AC 38 ms
52,240 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 40 ms
52,484 KB
testcase_36 AC 42 ms
53,252 KB
testcase_37 AC 42 ms
52,404 KB
testcase_38 WA -
testcase_39 TLE -
testcase_40 AC 838 ms
141,648 KB
testcase_41 AC 1,290 ms
189,684 KB
testcase_42 AC 1,229 ms
189,424 KB
testcase_43 AC 1,188 ms
189,648 KB
testcase_44 AC 1,276 ms
190,124 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