結果

問題 No.2075 GCD Subsequence
ユーザー rlangevinrlangevin
提出日時 2024-04-13 16:51:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,059 ms / 4,000 ms
コード長 932 bytes
コンパイル時間 530 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 201,484 KB
最終ジャッジ日時 2024-10-03 00:15:40
合計ジャッジ時間 31,111 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 40 ms
52,480 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 39 ms
52,480 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 AC 39 ms
53,120 KB
testcase_08 AC 1,423 ms
177,144 KB
testcase_09 AC 2,059 ms
201,484 KB
testcase_10 AC 1,494 ms
178,952 KB
testcase_11 AC 1,858 ms
191,524 KB
testcase_12 AC 1,685 ms
184,076 KB
testcase_13 AC 1,312 ms
172,304 KB
testcase_14 AC 1,829 ms
190,552 KB
testcase_15 AC 1,441 ms
174,536 KB
testcase_16 AC 1,512 ms
177,472 KB
testcase_17 AC 1,986 ms
200,964 KB
testcase_18 AC 1,098 ms
150,068 KB
testcase_19 AC 1,089 ms
150,292 KB
testcase_20 AC 1,093 ms
150,028 KB
testcase_21 AC 1,090 ms
149,924 KB
testcase_22 AC 1,086 ms
150,460 KB
testcase_23 AC 1,096 ms
150,456 KB
testcase_24 AC 1,092 ms
150,420 KB
testcase_25 AC 1,107 ms
150,320 KB
testcase_26 AC 1,082 ms
150,188 KB
testcase_27 AC 1,085 ms
150,072 KB
testcase_28 AC 657 ms
128,628 KB
testcase_29 AC 40 ms
51,840 KB
testcase_30 AC 41 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import ceil, sqrt
def moebius_table(n):
    p = list(range(n + 1))
    for x in range(2, ceil(sqrt(n)) + 1):
        if p[x] == x:
            for y in range(x*x, n + 1, x):
                p[y] = x
            for y in range(x*x, n + 1, x*x):
                p[y] = 0
    res = [0] * (n + 1)
    res[1] = 1
    for x in range(2, n + 1):
        if p[x]:
            res[x] = -res[x//p[x]]

    return res


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

m = moebius_table(M)

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