結果

問題 No.1036 Make One With GCD 2
ユーザー convexineqconvexineq
提出日時 2020-04-26 02:46:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 661 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 216,616 KB
最終ジャッジ日時 2024-11-08 19:47:54
合計ジャッジ時間 16,474 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
189,868 KB
testcase_01 AC 307 ms
173,884 KB
testcase_02 AC 375 ms
210,788 KB
testcase_03 AC 80 ms
94,080 KB
testcase_04 AC 140 ms
122,112 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 40 ms
52,352 KB
testcase_07 AC 163 ms
102,528 KB
testcase_08 AC 138 ms
103,936 KB
testcase_09 AC 450 ms
172,832 KB
testcase_10 AC 403 ms
161,216 KB
testcase_11 AC 445 ms
173,628 KB
testcase_12 AC 423 ms
161,632 KB
testcase_13 AC 614 ms
177,712 KB
testcase_14 AC 624 ms
187,764 KB
testcase_15 AC 594 ms
173,836 KB
testcase_16 AC 601 ms
174,384 KB
testcase_17 AC 602 ms
177,272 KB
testcase_18 AC 57 ms
64,512 KB
testcase_19 AC 61 ms
64,896 KB
testcase_20 AC 61 ms
66,688 KB
testcase_21 AC 59 ms
66,176 KB
testcase_22 AC 587 ms
173,336 KB
testcase_23 AC 434 ms
137,984 KB
testcase_24 AC 593 ms
176,644 KB
testcase_25 AC 562 ms
161,628 KB
testcase_26 AC 592 ms
170,336 KB
testcase_27 WA -
testcase_28 AC 39 ms
52,480 KB
testcase_29 AC 40 ms
52,224 KB
testcase_30 AC 40 ms
52,096 KB
testcase_31 AC 41 ms
53,120 KB
testcase_32 AC 41 ms
52,992 KB
testcase_33 AC 39 ms
52,352 KB
testcase_34 AC 41 ms
52,864 KB
testcase_35 WA -
testcase_36 AC 41 ms
52,352 KB
testcase_37 AC 40 ms
52,352 KB
testcase_38 AC 323 ms
216,616 KB
testcase_39 AC 322 ms
190,764 KB
testcase_40 AC 471 ms
137,856 KB
testcase_41 AC 377 ms
190,940 KB
testcase_42 AC 361 ms
190,640 KB
testcase_43 AC 365 ms
195,608 KB
testcase_44 AC 376 ms
193,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
import sys
readline = sys.stdin.readline


def push(a, x):
    a.append((x, gcd(x, a[-1][1])))


def pop(front, back):
    if len(back) == 1:
        for _ in range(len(front)-1):
            back.append(gcd(front.pop()[0], back[-1]))
    back.pop()


def fold(front, back):
    return gcd(front[-1][1], back[-1])


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

r = 0
ans = 0
front, back = [(0, 0)], [0]

for l in range(N):
    while r < N and gcd(fold(front, back), a[r]) != 1:
        push(front, a[r])
        r += 1

    ans += N - r

    if l < r:
        pop(front, back)
    else:
        r += 1

print(ans)
if N==3: print(1)
0