結果

問題 No.1036 Make One With GCD 2
ユーザー rkyiolklorkyiolklo
提出日時 2020-05-12 20:28:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,944 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 93,068 KB
最終ジャッジ日時 2024-09-13 20:46:55
合計ジャッジ時間 41,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,480 ms
65,704 KB
testcase_01 AC 1,210 ms
43,668 KB
testcase_02 AC 1,092 ms
93,068 KB
testcase_03 AC 198 ms
14,052 KB
testcase_04 AC 336 ms
16,612 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 405 ms
23,952 KB
testcase_08 AC 337 ms
22,032 KB
testcase_09 AC 1,363 ms
65,224 KB
testcase_10 AC 1,278 ms
60,576 KB
testcase_11 AC 1,409 ms
66,324 KB
testcase_12 AC 1,324 ms
61,924 KB
testcase_13 AC 1,575 ms
63,164 KB
testcase_14 AC 1,576 ms
64,076 KB
testcase_15 AC 1,489 ms
60,352 KB
testcase_16 AC 1,504 ms
61,248 KB
testcase_17 AC 1,540 ms
62,632 KB
testcase_18 AC 33 ms
10,880 KB
testcase_19 AC 36 ms
10,880 KB
testcase_20 AC 38 ms
11,008 KB
testcase_21 AC 37 ms
11,136 KB
testcase_22 AC 1,460 ms
60,388 KB
testcase_23 AC 1,077 ms
50,212 KB
testcase_24 AC 1,530 ms
62,308 KB
testcase_25 AC 1,407 ms
57,172 KB
testcase_26 AC 1,440 ms
58,916 KB
testcase_27 AC 30 ms
10,752 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 30 ms
10,752 KB
testcase_30 AC 29 ms
10,624 KB
testcase_31 AC 30 ms
10,880 KB
testcase_32 AC 31 ms
10,752 KB
testcase_33 AC 29 ms
10,752 KB
testcase_34 AC 30 ms
10,752 KB
testcase_35 AC 30 ms
10,752 KB
testcase_36 AC 30 ms
10,752 KB
testcase_37 AC 29 ms
10,880 KB
testcase_38 AC 1,015 ms
69,780 KB
testcase_39 AC 1,944 ms
65,816 KB
testcase_40 AC 1,084 ms
48,372 KB
testcase_41 AC 1,576 ms
65,980 KB
testcase_42 AC 1,553 ms
65,972 KB
testcase_43 AC 1,521 ms
65,980 KB
testcase_44 AC 1,560 ms
65,980 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