結果

問題 No.2211 Frequency Table of GCD
ユーザー rlangevinrlangevin
提出日時 2023-02-10 22:26:51
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 881 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 140,988 KB
最終ジャッジ日時 2024-07-07 16:37:06
合計ジャッジ時間 11,669 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,352 KB
testcase_01 AC 39 ms
60,952 KB
testcase_02 AC 39 ms
60,080 KB
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 55 ms
76,584 KB
testcase_09 AC 50 ms
71,500 KB
testcase_10 AC 67 ms
92,560 KB
testcase_11 AC 60 ms
83,844 KB
testcase_12 AC 71 ms
96,180 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 AC 72 ms
82,336 KB
testcase_24 AC 111 ms
113,088 KB
testcase_25 AC 74 ms
99,756 KB
testcase_26 AC 41 ms
60,444 KB
testcase_27 AC 1,383 ms
140,988 KB
testcase_28 AC 113 ms
113,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def div(n):
    if n <= 0:
        return []
    S = set()
    i = 1
    while i * i <= n:
        if n % i == 0:
            S.add(i)
            S.add(n // i)
        i += 1
    return list(S)

N, M = map(int, input().split())
A = list(map(int, input().split()))
mod = 998244353
L = [0] * (M + 1)
D = [0] * (M + 1)
for a in A:
    D[a] += 1
    
dic = dict()
for i in range(1, M + 1):
    if D[i] == 0:
        continue
    dic[i] = div(i)
    for d in dic[i]:
        L[d] += D[i]
        
two = [1] * 202020
for i in range(202000):
    two[i + 1] = two[i] * 2
    two[i + 1] %= mod
    
ans = [0] * (M + 1)
for i in range(M + 1):
    ans[i] = two[L[i]] - 1
    
for i in range(M, 0, -1):
    if ans[i] == 0:
        continue
    for d in dic[i]:
        if d == i:
            continue
        ans[d] -= ans[i]
        ans[d] %= mod

for i in range(1, M + 1):
    print(ans[i])
0