結果

問題 No.1036 Make One With GCD 2
ユーザー rkyiolklorkyiolklo
提出日時 2020-04-25 00:05:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 724 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 851 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 199,228 KB
最終ジャッジ日時 2024-09-16 13:31:52
合計ジャッジ時間 18,480 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 695 ms
195,012 KB
testcase_01 AC 310 ms
182,688 KB
testcase_02 AC 453 ms
167,868 KB
testcase_03 AC 106 ms
104,704 KB
testcase_04 AC 141 ms
130,048 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 187 ms
106,228 KB
testcase_08 AC 160 ms
108,868 KB
testcase_09 AC 445 ms
181,160 KB
testcase_10 AC 419 ms
169,264 KB
testcase_11 AC 446 ms
181,612 KB
testcase_12 AC 418 ms
169,588 KB
testcase_13 AC 593 ms
186,560 KB
testcase_14 AC 586 ms
195,972 KB
testcase_15 AC 577 ms
182,052 KB
testcase_16 AC 580 ms
182,468 KB
testcase_17 AC 580 ms
185,652 KB
testcase_18 AC 57 ms
66,816 KB
testcase_19 AC 66 ms
72,192 KB
testcase_20 AC 67 ms
74,752 KB
testcase_21 AC 66 ms
73,856 KB
testcase_22 AC 561 ms
181,948 KB
testcase_23 AC 427 ms
146,432 KB
testcase_24 AC 599 ms
184,952 KB
testcase_25 AC 538 ms
170,088 KB
testcase_26 AC 559 ms
178,932 KB
testcase_27 AC 38 ms
52,096 KB
testcase_28 AC 36 ms
51,840 KB
testcase_29 AC 36 ms
52,224 KB
testcase_30 AC 37 ms
52,224 KB
testcase_31 AC 39 ms
52,736 KB
testcase_32 AC 39 ms
52,992 KB
testcase_33 AC 36 ms
52,480 KB
testcase_34 AC 37 ms
52,992 KB
testcase_35 AC 37 ms
51,840 KB
testcase_36 AC 37 ms
52,608 KB
testcase_37 AC 38 ms
52,096 KB
testcase_38 AC 692 ms
198,712 KB
testcase_39 AC 581 ms
198,724 KB
testcase_40 AC 422 ms
147,072 KB
testcase_41 AC 656 ms
199,100 KB
testcase_42 AC 638 ms
199,088 KB
testcase_43 AC 691 ms
199,228 KB
testcase_44 AC 724 ms
199,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd 
n=int(input())
a=list(map(int,input().split()))
sz=1
while sz<n:
    sz*=2
seg=[0]*(2*sz)
for i in range(n):
    seg[i+sz]=a[i]
for i in range(sz-1,0,-1):
    seg[i]=gcd(seg[2*i],seg[2*i+1])

def query(a,b):
    if a>=b:
        return 0
    a1=a+sz
    b1=b+sz
    ret=0
    while a1<b1:
        if b1&1:
            b1-=1
            ret=gcd(ret,seg[b1])
        if a1&1:
            ret=gcd(ret,seg[a1])
            a1+=1
        a1>>=1
        b1>>=1
    return ret 
ans=0
r=1
for i in range(n):
    while r<=n:
        if query(i,r)==1:
            break
        r+=1
    ans+=(n+1-r)
print(ans)
0