結果

問題 No.917 Make One With GCD
ユーザー convexineqconvexineq
提出日時 2019-10-25 22:32:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 1,435 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 70,976 KB
最終ジャッジ日時 2024-06-24 11:04:45
合計ジャッジ時間 3,411 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
61,824 KB
testcase_01 AC 37 ms
53,568 KB
testcase_02 AC 38 ms
52,612 KB
testcase_03 AC 38 ms
52,468 KB
testcase_04 AC 38 ms
52,672 KB
testcase_05 AC 38 ms
53,240 KB
testcase_06 AC 64 ms
70,976 KB
testcase_07 AC 62 ms
66,444 KB
testcase_08 AC 53 ms
64,020 KB
testcase_09 AC 83 ms
63,840 KB
testcase_10 AC 93 ms
63,984 KB
testcase_11 AC 102 ms
64,320 KB
testcase_12 AC 184 ms
65,872 KB
testcase_13 AC 80 ms
62,940 KB
testcase_14 AC 99 ms
63,636 KB
testcase_15 AC 106 ms
64,724 KB
testcase_16 AC 88 ms
63,660 KB
testcase_17 AC 41 ms
58,532 KB
testcase_18 AC 53 ms
61,296 KB
testcase_19 AC 40 ms
59,400 KB
testcase_20 AC 43 ms
58,588 KB
testcase_21 AC 51 ms
61,500 KB
testcase_22 AC 48 ms
62,024 KB
testcase_23 AC 60 ms
62,344 KB
testcase_24 AC 51 ms
63,308 KB
testcase_25 AC 68 ms
61,832 KB
testcase_26 AC 45 ms
59,912 KB
testcase_27 AC 37 ms
52,548 KB
testcase_28 AC 38 ms
53,156 KB
testcase_29 AC 37 ms
53,156 KB
testcase_30 AC 45 ms
62,428 KB
testcase_31 AC 38 ms
52,744 KB
testcase_32 AC 40 ms
59,176 KB
testcase_33 AC 41 ms
59,304 KB
testcase_34 AC 36 ms
53,072 KB
testcase_35 AC 41 ms
57,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

import sys
#sys.setrecursionlimit(10**6)
readline = sys.stdin.readline 

def prime_factorize(N): #素因数分解
    exponent = 0
    while N%2 == 0:
        exponent += 1
        N //= 2
    if exponent: factorization = [[2,exponent]]
    else: factorization = []
    i=1
    while i*i <=N:
        i += 2
        if N%i: continue
        exponent = 0
        while N%i == 0:
            exponent += 1
            N //= i
        factorization.append([i,exponent])
    if N!= 1: factorization.append([N,1])
    assert N != 0, "zero"
    return factorization

def divisor_list(N): #約数のリスト
    if N == 1: return [1]
    res = []
    for i in range(1,N):
        if i*i >= N: break
        if N%i == 0:
            res.append(i)
            res.append(N//i)
    if i*i == N: res.append(i)
    return res

n = int(input())
a = [int(i) for i in readline().split()]
    
res = set()
pres = set()

for i in a:
    res|=set(divisor_list(i))
    P = prime_factorize(i)
    P = [pi[0] for pi in P]
    pres|=set(P)



ans = {i:0 for i in res}
for i in a: ans[i] += 1
res = sorted(list(res),reverse=True)


    
for p in pres:
    for c in res:
        if c%p==0: ans[c//p] += ans[c]

p2 = [1]
for i in range(100): p2.append(p2[-1]*2)


for i in ans:
    ans[i] = p2[ans[i]]-1


res = list(reversed(res))

for p in pres:
    for c in res:
        if c*p in res: ans[c] -= ans[c*p]

print(ans[1])

0