結果

問題 No.2211 Frequency Table of GCD
ユーザー tamatotamato
提出日時 2023-02-10 21:51:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,297 ms / 2,000 ms
コード長 860 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 115,412 KB
最終ジャッジ日時 2024-07-07 17:57:42
合計ジャッジ時間 11,837 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 39 ms
54,144 KB
testcase_02 AC 39 ms
53,376 KB
testcase_03 AC 118 ms
80,216 KB
testcase_04 AC 394 ms
101,400 KB
testcase_05 AC 545 ms
115,412 KB
testcase_06 AC 395 ms
96,000 KB
testcase_07 AC 582 ms
113,168 KB
testcase_08 AC 56 ms
76,416 KB
testcase_09 AC 53 ms
70,400 KB
testcase_10 AC 74 ms
92,928 KB
testcase_11 AC 63 ms
83,200 KB
testcase_12 AC 77 ms
97,152 KB
testcase_13 AC 345 ms
97,048 KB
testcase_14 AC 371 ms
93,676 KB
testcase_15 AC 279 ms
85,632 KB
testcase_16 AC 354 ms
92,708 KB
testcase_17 AC 514 ms
110,956 KB
testcase_18 AC 786 ms
106,752 KB
testcase_19 AC 943 ms
106,524 KB
testcase_20 AC 774 ms
106,844 KB
testcase_21 AC 783 ms
106,752 KB
testcase_22 AC 786 ms
106,752 KB
testcase_23 AC 100 ms
80,128 KB
testcase_24 AC 140 ms
106,764 KB
testcase_25 AC 80 ms
100,736 KB
testcase_26 AC 40 ms
53,376 KB
testcase_27 AC 1,297 ms
114,376 KB
testcase_28 AC 136 ms
107,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    from collections import Counter
    input = sys.stdin.readline

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

    cnt = [0] * (M+1)
    C = Counter(A)
    for a in C:
        div = []
        for d in range(1, a+1):
            if d * d > a:
                break
            if a % d == 0:
                div.append(d)
                div.append(a // d)
        if div[-1] == div[-2]:
            div.pop()
        for d in div:
            cnt[d] += C[a]

    ans = [0] * (M+1)
    for k in range(M, 0, -1):
        ans[k] = (pow(2, cnt[k], mod) - 1) % mod
        for x in range(2, M+1):
            if k * x > M:
                break
            ans[k] = (ans[k] - ans[k * x]) % mod
    for k in range(1, M+1):
        print(ans[k])


if __name__ == '__main__':
    main()
0