結果

問題 No.2075 GCD Subsequence
ユーザー 👑 rin204rin204
提出日時 2022-09-16 21:47:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,602 ms / 4,000 ms
コード長 2,300 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 115,016 KB
最終ジャッジ日時 2024-06-01 12:23:25
合計ジャッジ時間 52,200 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,076 KB
testcase_01 AC 46 ms
60,792 KB
testcase_02 AC 48 ms
61,164 KB
testcase_03 AC 45 ms
61,676 KB
testcase_04 AC 45 ms
63,080 KB
testcase_05 AC 45 ms
61,380 KB
testcase_06 AC 45 ms
61,292 KB
testcase_07 AC 48 ms
62,584 KB
testcase_08 AC 1,077 ms
102,432 KB
testcase_09 AC 1,736 ms
114,280 KB
testcase_10 AC 1,112 ms
102,476 KB
testcase_11 AC 1,464 ms
108,108 KB
testcase_12 AC 1,281 ms
104,984 KB
testcase_13 AC 940 ms
98,156 KB
testcase_14 AC 1,471 ms
107,948 KB
testcase_15 AC 1,076 ms
100,120 KB
testcase_16 AC 1,090 ms
102,244 KB
testcase_17 AC 1,693 ms
114,348 KB
testcase_18 AC 3,593 ms
115,016 KB
testcase_19 AC 3,314 ms
114,524 KB
testcase_20 AC 3,331 ms
114,676 KB
testcase_21 AC 3,264 ms
114,656 KB
testcase_22 AC 3,180 ms
114,332 KB
testcase_23 AC 3,231 ms
114,408 KB
testcase_24 AC 3,453 ms
114,288 KB
testcase_25 AC 3,560 ms
114,732 KB
testcase_26 AC 3,602 ms
114,984 KB
testcase_27 AC 3,297 ms
114,488 KB
testcase_28 AC 3,321 ms
114,672 KB
testcase_29 AC 42 ms
61,696 KB
testcase_30 AC 44 ms
61,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

def isprime(n):
    if n <= 1:
        return False
    elif n == 2:
        return True
    elif n % 2 == 0:
        return False
    
    A = [2, 325, 9375, 28178, 450775, 9780504, 1795265022]
    s = 0
    d = n - 1
    while d % 2 == 0:
        s += 1
        d >>= 1
    
    for a in A:
        if a % n == 0:
            return True
        x = pow(a, d, n)
        if x != 1:
            for t in range(s):
                if x == n - 1:
                    break
                x = x * x % n
            else:
                return False
    return True
        
def pollard(n):
    if n % 2 == 0:
        return 2
    if isprime(n):
        return n
    
    f = lambda x:(x * x + 1) % n
    
    step = 0
    while 1:
        step += 1
        x = step
        y = f(x)
        while 1:
            p = gcd(y - x + n, n)
            if p == 0 or p == n:
                break
            if p != 1:
                return p
            x = f(x)
            y = f(f(y))

def primefact(n):
    if n == 1:
        return []
    p = pollard(n)
    if p == n:
        return [p]
    left = primefact(p)
    right = primefact(n // p)
    left += right
    return sorted(left)

def popcount(n):
    n = (n & 0x5555555555555555) + ((n >> 1) & 0x5555555555555555)
    n = (n & 0x3333333333333333) + ((n >> 2) & 0x3333333333333333)
    n = (n & 0x0f0f0f0f0f0f0f0f) + ((n >> 4) & 0x0f0f0f0f0f0f0f0f)
    n = (n & 0x00ff00ff00ff00ff) + ((n >> 8) & 0x00ff00ff00ff00ff)
    n = (n & 0x0000ffff0000ffff) + ((n >> 16) & 0x0000ffff0000ffff)
    n = (n & 0x00000000ffffffff) + ((n >> 32) & 0x00000000ffffffff)
    return n

MOD = 998244353

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

ans = 0
dp = [0] * (10 ** 6 + 1)
for a in A:
    lst = list(set(primefact(a)))
    l = len(lst)
    tot = 1
    for bit in range(1, 1 << l):
        prod = 1
        pm = -1
        for i in range(l):
            if bit >> i & 1:
                prod *= lst[i]
        tot += dp[prod]
        tot %= MOD
    ans += tot
    ans %= MOD
    for bit in range(1, 1 << l):
        prod = 1
        pm = -1
        for i in range(l):
            if bit >> i & 1:
                pm *= -1
                prod *= lst[i]
        dp[prod] += pm * tot
        dp[prod] %= MOD
    

print(ans % MOD)
0