結果

問題 No.1036 Make One With GCD 2
ユーザー ptotqptotq
提出日時 2020-04-25 06:27:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,900 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 93,136 KB
最終ジャッジ日時 2024-09-16 13:37:24
合計ジャッジ時間 39,624 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,448 ms
65,508 KB
testcase_01 AC 1,187 ms
43,412 KB
testcase_02 AC 1,083 ms
93,136 KB
testcase_03 AC 198 ms
14,052 KB
testcase_04 AC 336 ms
16,608 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 405 ms
24,172 KB
testcase_08 AC 338 ms
22,032 KB
testcase_09 AC 1,354 ms
65,356 KB
testcase_10 AC 1,282 ms
60,616 KB
testcase_11 AC 1,377 ms
66,192 KB
testcase_12 AC 1,269 ms
61,920 KB
testcase_13 AC 1,548 ms
62,924 KB
testcase_14 AC 1,562 ms
63,944 KB
testcase_15 AC 1,456 ms
60,480 KB
testcase_16 AC 1,465 ms
61,488 KB
testcase_17 AC 1,521 ms
62,888 KB
testcase_18 AC 32 ms
11,008 KB
testcase_19 AC 34 ms
10,752 KB
testcase_20 AC 37 ms
11,136 KB
testcase_21 AC 36 ms
11,008 KB
testcase_22 AC 1,434 ms
60,392 KB
testcase_23 AC 1,064 ms
51,620 KB
testcase_24 AC 1,486 ms
62,440 KB
testcase_25 AC 1,364 ms
57,168 KB
testcase_26 AC 1,409 ms
58,924 KB
testcase_27 AC 29 ms
10,624 KB
testcase_28 AC 29 ms
10,624 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 30 ms
10,752 KB
testcase_31 AC 29 ms
10,752 KB
testcase_32 AC 30 ms
10,752 KB
testcase_33 AC 29 ms
10,880 KB
testcase_34 AC 28 ms
10,752 KB
testcase_35 AC 28 ms
10,752 KB
testcase_36 AC 29 ms
10,880 KB
testcase_37 AC 28 ms
10,752 KB
testcase_38 AC 996 ms
73,992 KB
testcase_39 AC 1,900 ms
65,980 KB
testcase_40 AC 1,068 ms
48,372 KB
testcase_41 AC 1,536 ms
65,980 KB
testcase_42 AC 1,523 ms
65,976 KB
testcase_43 AC 1,476 ms
65,980 KB
testcase_44 AC 1,549 ms
65,984 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)
0