結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
190,564 KB
testcase_01 AC 291 ms
173,764 KB
testcase_02 AC 369 ms
212,092 KB
testcase_03 AC 102 ms
100,736 KB
testcase_04 AC 127 ms
121,344 KB
testcase_05 AC 41 ms
51,840 KB
testcase_06 AC 41 ms
52,352 KB
testcase_07 AC 195 ms
102,784 KB
testcase_08 AC 165 ms
103,808 KB
testcase_09 AC 401 ms
172,512 KB
testcase_10 AC 383 ms
160,812 KB
testcase_11 AC 402 ms
173,312 KB
testcase_12 AC 372 ms
161,364 KB
testcase_13 AC 560 ms
177,628 KB
testcase_14 AC 573 ms
187,292 KB
testcase_15 AC 564 ms
173,748 KB
testcase_16 AC 542 ms
174,044 KB
testcase_17 AC 567 ms
176,924 KB
testcase_18 AC 63 ms
64,768 KB
testcase_19 AC 65 ms
66,048 KB
testcase_20 AC 67 ms
66,688 KB
testcase_21 AC 67 ms
66,816 KB
testcase_22 AC 547 ms
173,144 KB
testcase_23 AC 401 ms
137,984 KB
testcase_24 AC 548 ms
176,488 KB
testcase_25 AC 506 ms
161,412 KB
testcase_26 AC 535 ms
170,248 KB
testcase_27 AC 40 ms
51,968 KB
testcase_28 AC 41 ms
51,712 KB
testcase_29 AC 40 ms
52,096 KB
testcase_30 AC 42 ms
52,096 KB
testcase_31 AC 42 ms
52,608 KB
testcase_32 AC 43 ms
52,864 KB
testcase_33 AC 40 ms
52,224 KB
testcase_34 AC 42 ms
52,736 KB
testcase_35 AC 41 ms
52,096 KB
testcase_36 AC 41 ms
51,712 KB
testcase_37 AC 41 ms
52,096 KB
testcase_38 AC 334 ms
223,964 KB
testcase_39 AC 314 ms
190,552 KB
testcase_40 AC 402 ms
138,368 KB
testcase_41 AC 337 ms
190,924 KB
testcase_42 AC 327 ms
190,940 KB
testcase_43 AC 341 ms
196,056 KB
testcase_44 AC 345 ms
192,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
n = int(input())
X = list(map(int, input().split()))
st_f = [(0, 0), (X[0], X[0])]
st_b = [(0, 0)]
r = 0
j = 0
for i in range(n):
    while j<n-1:
        if gcd(st_f[-1][1], st_b[-1][1]) == 1:
            break
        j += 1
        st_f.append(
                (X[j], gcd(st_f[-1][1], X[j]))
                )
    if j == n-1 and gcd(st_f[-1][1], st_b[-1][1]) != 1:
        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()
#    print(i, j)
    r += n-j
print(r)
0