結果

問題 No.2075 GCD Subsequence
ユーザー rlangevinrlangevin
提出日時 2024-04-14 20:52:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,261 ms / 4,000 ms
コード長 1,044 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 203,996 KB
最終ジャッジ日時 2024-10-03 23:42:09
合計ジャッジ時間 20,564 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 34 ms
51,840 KB
testcase_02 AC 34 ms
52,352 KB
testcase_03 AC 35 ms
52,608 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 34 ms
52,224 KB
testcase_06 AC 36 ms
52,736 KB
testcase_07 AC 34 ms
52,480 KB
testcase_08 AC 910 ms
181,648 KB
testcase_09 AC 1,261 ms
203,996 KB
testcase_10 AC 909 ms
183,516 KB
testcase_11 AC 1,137 ms
195,612 KB
testcase_12 AC 986 ms
188,576 KB
testcase_13 AC 766 ms
177,472 KB
testcase_14 AC 1,072 ms
194,308 KB
testcase_15 AC 800 ms
179,480 KB
testcase_16 AC 835 ms
181,844 KB
testcase_17 AC 1,221 ms
203,844 KB
testcase_18 AC 712 ms
157,748 KB
testcase_19 AC 751 ms
157,668 KB
testcase_20 AC 725 ms
157,880 KB
testcase_21 AC 726 ms
157,736 KB
testcase_22 AC 727 ms
157,880 KB
testcase_23 AC 731 ms
157,744 KB
testcase_24 AC 730 ms
157,976 KB
testcase_25 AC 741 ms
157,968 KB
testcase_26 AC 726 ms
157,596 KB
testcase_27 AC 736 ms
157,996 KB
testcase_28 AC 611 ms
133,916 KB
testcase_29 AC 35 ms
52,096 KB
testcase_30 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Mobius():
    def __init__(self, N):
        self.L = list(range(N + 1))
        self.mobius = [1] * (N + 1)
        for i in range(2, N + 1):
            if i != self.L[i]:
                continue
            self.mobius[i] = -1
            for j in range(2 * i, N + 1, i):
                if self.L[j] == j:
                    self.L[j] = i
                if (j // i) % i == 0:
                    self.mobius[j] = 0
                else:
                    self.mobius[j] = - self.mobius[j]


N = int(input())
A = list(map(int, input().split()))
M = max(A) + 5
dp = [0] * M
g = [0] * M
S = [0] * M
for a in A:
    S[a] = 1
s = 0
mod = 998244353
d = [[] for i in range(M)]
for i in range(1, M):
    for j in range(i, M, i):
        if S[j]:
            d[j].append(i)

m = Mobius(M).mobius

for a in A:
    temp = 0
    for dd in d[a]:
        temp += m[dd] * g[dd]
    v = 1 + s - temp
    s += v
    dp[a] += v
    s %= mod
    dp[a] %= mod
    for dd in d[a]:
        g[dd] += v
        g[dd] %= mod
        
print(sum(dp) % mod)
0