結果

問題 No.917 Make One With GCD
ユーザー H20H20
提出日時 2021-12-27 17:19:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 760 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 63,872 KB
最終ジャッジ日時 2024-09-25 11:02:21
合計ジャッジ時間 2,969 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
63,232 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 42 ms
54,144 KB
testcase_03 AC 41 ms
53,632 KB
testcase_04 AC 42 ms
53,632 KB
testcase_05 AC 43 ms
54,144 KB
testcase_06 AC 43 ms
54,144 KB
testcase_07 AC 43 ms
54,144 KB
testcase_08 AC 46 ms
54,144 KB
testcase_09 AC 54 ms
63,872 KB
testcase_10 AC 54 ms
63,744 KB
testcase_11 AC 53 ms
62,976 KB
testcase_12 AC 54 ms
63,616 KB
testcase_13 AC 54 ms
62,720 KB
testcase_14 AC 52 ms
63,104 KB
testcase_15 AC 53 ms
62,848 KB
testcase_16 AC 52 ms
62,720 KB
testcase_17 AC 46 ms
59,648 KB
testcase_18 AC 47 ms
60,032 KB
testcase_19 AC 43 ms
54,016 KB
testcase_20 AC 45 ms
58,880 KB
testcase_21 AC 47 ms
59,776 KB
testcase_22 AC 46 ms
59,520 KB
testcase_23 AC 47 ms
59,776 KB
testcase_24 AC 45 ms
59,520 KB
testcase_25 AC 47 ms
60,032 KB
testcase_26 AC 44 ms
59,520 KB
testcase_27 AC 41 ms
54,016 KB
testcase_28 AC 41 ms
53,632 KB
testcase_29 AC 40 ms
54,272 KB
testcase_30 AC 42 ms
53,888 KB
testcase_31 AC 42 ms
54,016 KB
testcase_32 AC 41 ms
54,272 KB
testcase_33 AC 43 ms
53,888 KB
testcase_34 AC 44 ms
54,144 KB
testcase_35 AC 42 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
import math

def prime_factorize(n):
    a = []
    while n % 2 == 0:
        a.append(2)
        n //= 2
    f = 3
    while f * f <= n:
        if n % f == 0:
            a.append(f)
            n //= f
        else:
            f += 2
    if n != 1:
        a.append(n)
    a = list(set(a))
    m=1
    for i in a:
        m*=i
    return m

N = int(input())
A = list(map(int,input().split()))
d = collections.defaultdict(int)
for a in A:
    nd = collections.defaultdict(int)
    a = prime_factorize(a)
    for k,v in d.items():
        p = math.gcd(a,k)
        if p>1:
            nd[p]+=d[k]

    for k,v in d.items():
        nd[k]+=v    
    if a>1:
        nd[a]+=1
    d = nd
s = 0
for k,v in d.items():
    s+=v
print(2**N-1-s)

0