結果

問題 No.1036 Make One With GCD 2
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-04-26 17:28:50
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 750 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 210,920 KB
最終ジャッジ日時 2024-11-17 14:21:13
合計ジャッジ時間 18,760 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 273 ms
173,516 KB
testcase_02 RE -
testcase_03 AC 91 ms
99,956 KB
testcase_04 AC 112 ms
120,456 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 128 ms
101,368 KB
testcase_08 AC 110 ms
101,796 KB
testcase_09 RE -
testcase_10 AC 503 ms
160,904 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 AC 747 ms
168,528 KB
testcase_14 AC 700 ms
179,004 KB
testcase_15 AC 694 ms
165,436 KB
testcase_16 RE -
testcase_17 AC 707 ms
168,372 KB
testcase_18 AC 58 ms
66,560 KB
testcase_19 AC 63 ms
69,376 KB
testcase_20 AC 64 ms
70,016 KB
testcase_21 AC 64 ms
69,888 KB
testcase_22 AC 686 ms
165,292 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 615 ms
153,408 KB
testcase_26 AC 649 ms
162,288 KB
testcase_27 AC 37 ms
51,712 KB
testcase_28 AC 37 ms
51,712 KB
testcase_29 RE -
testcase_30 AC 38 ms
51,712 KB
testcase_31 AC 40 ms
52,608 KB
testcase_32 AC 39 ms
52,736 KB
testcase_33 AC 38 ms
52,096 KB
testcase_34 AC 40 ms
52,096 KB
testcase_35 RE -
testcase_36 AC 38 ms
51,712 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 AC 522 ms
132,352 KB
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
権限があれば一括ダウンロードができます

ソースコード

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 True:
        if gcd(st_f[-1][1], st_b[-1][1]) == 1:
            break
        if j == n:
            j += 1
            break
        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