結果

問題 No.1036 Make One With GCD 2
ユーザー neterukunneterukun
提出日時 2020-04-24 22:21:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 761 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 190,804 KB
最終ジャッジ日時 2024-11-07 02:38:01
合計ジャッジ時間 22,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 641 ms
186,460 KB
testcase_01 AC 249 ms
174,016 KB
testcase_02 AC 301 ms
158,996 KB
testcase_03 AC 88 ms
93,568 KB
testcase_04 AC 122 ms
121,728 KB
testcase_05 AC 43 ms
51,840 KB
testcase_06 AC 43 ms
52,096 KB
testcase_07 AC 130 ms
102,016 KB
testcase_08 AC 114 ms
103,680 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 54 ms
62,464 KB
testcase_19 AC 56 ms
61,952 KB
testcase_20 AC 57 ms
62,336 KB
testcase_21 AC 56 ms
62,976 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 42 ms
51,840 KB
testcase_28 AC 42 ms
51,456 KB
testcase_29 AC 41 ms
51,584 KB
testcase_30 AC 41 ms
51,840 KB
testcase_31 AC 42 ms
52,480 KB
testcase_32 AC 43 ms
52,352 KB
testcase_33 AC 42 ms
51,840 KB
testcase_34 AC 43 ms
52,480 KB
testcase_35 AC 42 ms
51,584 KB
testcase_36 AC 41 ms
52,096 KB
testcase_37 AC 41 ms
52,096 KB
testcase_38 AC 251 ms
173,772 KB
testcase_39 AC 1,501 ms
190,512 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def gcd(a: int, b: int) -> int:
    """a, bの最大公約数(greatest common divisor: GCD)を求める
    計算量: O(log(min(a, b)))
    """
    if b == 0:
        return a
    return gcd(b, a%b)


def multi_gcd(array: list) -> int:
    """arrayのGCDを求める"""
    n = len(array)
    ans = array[0]
    for i in range(1, n):
        ans = gcd(ans, array[i])
    return ans


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

l, r = 0, 0
ans = 0
while True:
    tmp = a[l]
    while True:
        if r == n:
            break
        if gcd(tmp, a[r]) == 1:
            ans += n - r 
            break
        else:
            tmp = gcd(tmp, a[r])
            r += 1
    l += 1
    if l > r:
        r = l
    if l == n:
        break

print(ans)
0