結果

問題 No.917 Make One With GCD
ユーザー tamatotamato
提出日時 2020-05-04 23:25:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,768 KB
実行使用メモリ 64,700 KB
最終ジャッジ日時 2024-06-24 11:16:00
合計ジャッジ時間 2,836 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
62,968 KB
testcase_01 AC 42 ms
55,244 KB
testcase_02 AC 41 ms
53,956 KB
testcase_03 AC 42 ms
54,996 KB
testcase_04 AC 42 ms
53,920 KB
testcase_05 AC 41 ms
54,172 KB
testcase_06 AC 42 ms
54,108 KB
testcase_07 AC 42 ms
54,184 KB
testcase_08 AC 41 ms
55,300 KB
testcase_09 AC 51 ms
63,952 KB
testcase_10 AC 51 ms
63,656 KB
testcase_11 AC 51 ms
64,700 KB
testcase_12 AC 51 ms
64,480 KB
testcase_13 AC 50 ms
63,344 KB
testcase_14 AC 50 ms
63,312 KB
testcase_15 AC 51 ms
63,616 KB
testcase_16 AC 51 ms
63,316 KB
testcase_17 AC 43 ms
54,924 KB
testcase_18 AC 45 ms
60,304 KB
testcase_19 AC 42 ms
53,800 KB
testcase_20 AC 43 ms
54,556 KB
testcase_21 AC 47 ms
60,052 KB
testcase_22 AC 44 ms
54,772 KB
testcase_23 AC 47 ms
60,612 KB
testcase_24 AC 47 ms
60,696 KB
testcase_25 AC 48 ms
60,200 KB
testcase_26 AC 43 ms
54,548 KB
testcase_27 AC 42 ms
55,100 KB
testcase_28 AC 42 ms
54,696 KB
testcase_29 AC 41 ms
53,884 KB
testcase_30 AC 42 ms
54,412 KB
testcase_31 AC 41 ms
54,136 KB
testcase_32 AC 41 ms
55,332 KB
testcase_33 AC 41 ms
55,872 KB
testcase_34 AC 42 ms
55,124 KB
testcase_35 AC 41 ms
54,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import defaultdict
    input = sys.stdin.readline

    def gcd(a, b):
        while a%b:
            a, b = b, a%b
        return b

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

    G = defaultdict(int)
    for a in A:
        tmp = []
        for v in G:
            tmp.append((gcd(v, a), G[v]))
        for x, y in tmp:
            G[x] += y
        G[a] += 1
    print(G[1])


if __name__ == '__main__':
    main()
0