結果

問題 No.2211 Frequency Table of GCD
ユーザー dachengzdachengz
提出日時 2023-02-11 13:17:58
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,107 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 102,656 KB
最終ジャッジ日時 2024-07-08 03:02:06
合計ジャッジ時間 6,329 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 33 ms
52,352 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 87 ms
83,584 KB
testcase_09 AC 85 ms
81,024 KB
testcase_10 AC 122 ms
93,636 KB
testcase_11 AC 121 ms
88,448 KB
testcase_12 AC 144 ms
95,872 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 309 ms
102,656 KB
testcase_19 AC 307 ms
102,272 KB
testcase_20 AC 318 ms
102,400 KB
testcase_21 AC 341 ms
102,400 KB
testcase_22 AC 335 ms
102,144 KB
testcase_23 RE -
testcase_24 AC 315 ms
102,400 KB
testcase_25 AC 82 ms
97,664 KB
testcase_26 AC 35 ms
52,224 KB
testcase_27 AC 282 ms
102,016 KB
testcase_28 AC 331 ms
102,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def isqrt(n):
    if n <= 0:
        return 0

    x = int((n ** 0.5) * (1 + 1e-14))
    while True:
        y = (x + n // x) // 2
        if y >= x:
            return x
        x = y

def smf_sieve(N):
    v = isqrt(N)
    assert v * v <= N < (v + 1) * (v + 1)
    smf = list(range(N + 1))
    for d in range(2, N + 1, 2):
        smf[d] = 2
    for p in range(3, v + 1, 2):
        if smf[p] != p:
            continue
        for d in range(p * p, N + 1, 2 * p):
            if smf[d] == d:
                smf[d] = p
    return smf

N, M = map(int, input().split())
A = map(int, input().split())

mod = 998244353

C = [0] * (M + 1)
smf = smf_sieve(N)
for a in A:
    a0 = a
    divs = [1]
    while a > 1:
        p = smf[a]
        r = [1]
        while smf[a] == p:
            a //= p
            r.append(r[-1] * p)
        divs = [d * q for d in divs for q in r]
    for d in divs:
        C[d] += 1
C = [pow(2, c, mod) - 1 for c in C]
M1 = M + 1
for i in range(M // 2, 0, -1):
    tmp = C[i]
    for n in range(i + i, M1, i):
        tmp -= C[n]
    C[i] = tmp % mod
for c in C[1:]:
    print(c)
0