結果

問題 No.917 Make One With GCD
ユーザー tpynerivertpyneriver
提出日時 2019-11-07 20:53:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 1,591 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 76,644 KB
最終ジャッジ日時 2024-06-24 11:10:44
合計ジャッジ時間 4,521 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
72,548 KB
testcase_01 AC 88 ms
66,112 KB
testcase_02 AC 84 ms
67,900 KB
testcase_03 AC 84 ms
66,416 KB
testcase_04 AC 86 ms
66,332 KB
testcase_05 AC 84 ms
66,360 KB
testcase_06 AC 111 ms
76,440 KB
testcase_07 AC 106 ms
76,644 KB
testcase_08 AC 89 ms
69,020 KB
testcase_09 AC 101 ms
72,172 KB
testcase_10 AC 101 ms
72,468 KB
testcase_11 AC 99 ms
72,364 KB
testcase_12 AC 107 ms
73,964 KB
testcase_13 AC 101 ms
72,988 KB
testcase_14 AC 101 ms
73,484 KB
testcase_15 AC 101 ms
72,824 KB
testcase_16 AC 100 ms
72,224 KB
testcase_17 AC 90 ms
67,808 KB
testcase_18 AC 94 ms
69,568 KB
testcase_19 AC 86 ms
67,400 KB
testcase_20 AC 86 ms
67,368 KB
testcase_21 AC 90 ms
70,500 KB
testcase_22 AC 91 ms
69,248 KB
testcase_23 AC 95 ms
70,260 KB
testcase_24 AC 91 ms
68,884 KB
testcase_25 AC 97 ms
71,580 KB
testcase_26 AC 88 ms
67,468 KB
testcase_27 AC 85 ms
66,360 KB
testcase_28 AC 85 ms
66,184 KB
testcase_29 AC 84 ms
67,088 KB
testcase_30 AC 86 ms
66,880 KB
testcase_31 AC 84 ms
66,112 KB
testcase_32 AC 85 ms
67,436 KB
testcase_33 AC 86 ms
66,700 KB
testcase_34 AC 84 ms
66,688 KB
testcase_35 AC 87 ms
67,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline

def divi(n):
    res = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            res.append(i)
            if i != n // i:
                res.append(n//i)
    return res

from collections import Counter
def prsh(N):
    prime = [2]
    for L in range(3,N):
        for p in prime:
            if not L % p:
                break
            if p > L**(1/2):
                prime.append(L)
                break
    return prime

def popcount(i):
    assert 0 <= i < 0x100000000
    i = i - ((i >> 1) & 0x55555555)
    i = (i & 0x33333333) + ((i >> 2) & 0x33333333)
    return (((i + (i >> 4) & 0xF0F0F0F) * 0x1010101) & 0xffffffff) >> 24

primes = prsh(10**5)
def munum(N, C = Counter()):
    diviprimes = []
    cnt = 0
    p = 0
    while N >= p**2:
        p = primes[cnt]
        if N % p == 0:
            diviprimes.append(p)
            N //= p
            while N % p == 0:
                N //= p
        cnt += 1
    if N != 1:
        diviprimes.append(N)
    
    M = len(diviprimes)
    for i in range(1<<M):
        res = 1
        k = popcount(i)
        for j in range(M):
            if i & (1<<j):
                res *= diviprimes[j]
        C[res] = (-1)**k
    
    return C


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

divis = set()
Mu = Counter()
for a in A:
    Mu = munum(a, Mu)
    divis |= set(divi(a))

divis = list(divis)


res = 0
for d in divis:
    if Mu[d] == 0:
        continue
   
    cnt = sum(1 for a in A if a % d == 0)
    
    res += Mu[d] * (pow(2, cnt) - 1)

print(res)
0