結果

問題 No.1036 Make One With GCD 2
ユーザー chineristACchineristAC
提出日時 2020-06-18 02:28:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,911 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 236,148 KB
最終ジャッジ日時 2024-07-03 12:40:26
合計ジャッジ時間 40,600 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,657 ms
229,836 KB
testcase_01 AC 1,254 ms
223,908 KB
testcase_02 AC 1,560 ms
236,148 KB
testcase_03 AC 371 ms
117,512 KB
testcase_04 AC 721 ms
151,380 KB
testcase_05 AC 36 ms
54,056 KB
testcase_06 AC 37 ms
52,576 KB
testcase_07 AC 511 ms
123,056 KB
testcase_08 AC 422 ms
115,812 KB
testcase_09 AC 1,274 ms
218,268 KB
testcase_10 AC 1,179 ms
209,632 KB
testcase_11 AC 1,356 ms
223,472 KB
testcase_12 AC 1,197 ms
209,860 KB
testcase_13 AC 1,368 ms
221,796 KB
testcase_14 AC 1,392 ms
222,836 KB
testcase_15 AC 1,281 ms
214,040 KB
testcase_16 AC 1,295 ms
214,144 KB
testcase_17 AC 1,340 ms
221,336 KB
testcase_18 AC 65 ms
72,768 KB
testcase_19 AC 61 ms
71,168 KB
testcase_20 AC 65 ms
73,396 KB
testcase_21 AC 65 ms
73,500 KB
testcase_22 AC 1,281 ms
213,408 KB
testcase_23 AC 933 ms
178,880 KB
testcase_24 AC 1,357 ms
220,104 KB
testcase_25 AC 1,197 ms
205,400 KB
testcase_26 AC 1,256 ms
212,444 KB
testcase_27 AC 36 ms
53,060 KB
testcase_28 AC 34 ms
52,392 KB
testcase_29 AC 36 ms
52,712 KB
testcase_30 AC 36 ms
52,720 KB
testcase_31 AC 50 ms
65,708 KB
testcase_32 AC 52 ms
66,556 KB
testcase_33 AC 36 ms
53,180 KB
testcase_34 AC 47 ms
63,972 KB
testcase_35 AC 36 ms
53,732 KB
testcase_36 AC 35 ms
53,616 KB
testcase_37 AC 36 ms
52,592 KB
testcase_38 AC 1,911 ms
230,068 KB
testcase_39 AC 1,541 ms
230,192 KB
testcase_40 AC 929 ms
178,804 KB
testcase_41 AC 1,576 ms
230,472 KB
testcase_42 AC 1,542 ms
230,056 KB
testcase_43 AC 1,669 ms
230,064 KB
testcase_44 AC 1,720 ms
230,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
import sys

input=sys.stdin.buffer.readline

N=int(input())
A=list(map(int,input().split()))

n=N.bit_length()
_GCD=[[0 for i in range(n)] for i in range(N)]
for i in range(N):
    _GCD[i][0]=A[i]
for j in range(1,n):
    for i in range(N-2**j+1):
        _GCD[i][j]=gcd(_GCD[i][j-1],_GCD[i+2**(j-1)][j-1])

def GCD(l,r):
    b=r-l+1
    m=b.bit_length()-1
    return gcd(_GCD[l][m],_GCD[r-2**m+1][m])

res=0
for i in range(N):
    start=i
    end=N-1
    while end-start>1:
        t=(end+start)//2
        if GCD(i,t)==1:
            end=t
        else:
            start=t
    if GCD(i,start)==1:
        res+=N-start
    elif GCD(i,end)==1:
        res+=N-end

print(res)
0