結果

問題 No.1036 Make One With GCD 2
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-04-26 17:32:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 759 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 209,768 KB
最終ジャッジ日時 2024-09-16 14:13:50
合計ジャッジ時間 18,121 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
180,456 KB
testcase_01 AC 300 ms
173,568 KB
testcase_02 AC 349 ms
201,788 KB
testcase_03 AC 99 ms
100,224 KB
testcase_04 AC 124 ms
120,960 KB
testcase_05 AC 41 ms
51,584 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 141 ms
101,576 KB
testcase_08 AC 124 ms
102,144 KB
testcase_09 AC 528 ms
172,736 KB
testcase_10 AC 531 ms
160,644 KB
testcase_11 AC 550 ms
173,396 KB
testcase_12 AC 502 ms
161,504 KB
testcase_13 AC 759 ms
168,672 KB
testcase_14 AC 733 ms
179,120 KB
testcase_15 AC 724 ms
165,512 KB
testcase_16 AC 739 ms
166,048 KB
testcase_17 AC 731 ms
168,608 KB
testcase_18 AC 66 ms
66,688 KB
testcase_19 AC 73 ms
69,376 KB
testcase_20 AC 74 ms
69,888 KB
testcase_21 AC 73 ms
69,632 KB
testcase_22 AC 703 ms
165,892 KB
testcase_23 AC 550 ms
132,096 KB
testcase_24 AC 723 ms
167,944 KB
testcase_25 AC 646 ms
153,952 KB
testcase_26 AC 673 ms
162,512 KB
testcase_27 AC 41 ms
51,584 KB
testcase_28 AC 42 ms
51,968 KB
testcase_29 AC 41 ms
51,968 KB
testcase_30 AC 41 ms
51,968 KB
testcase_31 AC 42 ms
52,096 KB
testcase_32 AC 43 ms
52,992 KB
testcase_33 AC 41 ms
52,096 KB
testcase_34 AC 43 ms
52,352 KB
testcase_35 AC 41 ms
51,712 KB
testcase_36 AC 41 ms
52,096 KB
testcase_37 AC 41 ms
51,968 KB
testcase_38 AC 300 ms
209,768 KB
testcase_39 AC 305 ms
181,528 KB
testcase_40 AC 536 ms
132,736 KB
testcase_41 AC 528 ms
181,748 KB
testcase_42 AC 520 ms
181,484 KB
testcase_43 AC 494 ms
185,960 KB
testcase_44 AC 519 ms
183,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys;input=sys.stdin.readline
def gcd(a, b):
    if a < b:
        a, b = b, a
    if b == 0:
        return a
    while a % b:
        a, b = b, a%b
    return b
n = int(input())
X = list(map(int, input().split()))
st_f = [(0, 0), (X[0], X[0])]
st_b = [(0, 0)]
r = 0
j = 1
for i in range(n):
    while j<=n:
        if gcd(st_f[-1][1], st_b[-1][1]) == 1:
            break
        if j == n:
            j += 1
            break
#        print(j)
        st_f.append(
                (X[j], gcd(st_f[-1][1], X[j]))
                )
        j += 1
    if len(st_b) == 1:
        while len(st_f) > 1:
            x, y = st_f.pop()
            st_b.append(
                    (x, gcd(st_b[-1][1], x))
                    )
    st_b.pop()
    r += n-j+1
print(r)
0