結果

問題 No.2211 Frequency Table of GCD
ユーザー rlangevinrlangevin
提出日時 2023-02-10 22:23:49
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 811 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 112,848 KB
最終ジャッジ日時 2024-07-07 16:34:39
合計ジャッジ時間 25,699 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,948 KB
testcase_01 AC 37 ms
60,852 KB
testcase_02 AC 38 ms
60,308 KB
testcase_03 AC 872 ms
82,552 KB
testcase_04 AC 821 ms
91,324 KB
testcase_05 AC 1,063 ms
100,976 KB
testcase_06 AC 1,024 ms
87,312 KB
testcase_07 AC 1,382 ms
99,220 KB
testcase_08 AC 53 ms
76,624 KB
testcase_09 AC 47 ms
72,632 KB
testcase_10 AC 64 ms
93,512 KB
testcase_11 AC 57 ms
82,824 KB
testcase_12 AC 65 ms
96,708 KB
testcase_13 AC 756 ms
87,940 KB
testcase_14 AC 1,098 ms
86,216 KB
testcase_15 AC 933 ms
82,840 KB
testcase_16 AC 1,061 ms
85,636 KB
testcase_17 AC 1,047 ms
98,372 KB
testcase_18 AC 1,574 ms
109,000 KB
testcase_19 AC 1,711 ms
109,616 KB
testcase_20 AC 1,581 ms
109,376 KB
testcase_21 AC 1,711 ms
109,552 KB
testcase_22 AC 1,700 ms
109,564 KB
testcase_23 AC 965 ms
82,384 KB
testcase_24 AC 993 ms
112,848 KB
testcase_25 AC 68 ms
100,228 KB
testcase_26 AC 39 ms
59,628 KB
testcase_27 TLE -
testcase_28 AC 1,001 ms
112,844 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
    
for i in range(1, M + 1):
    if D[i] == 0:
        continue
    for d in div(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):
    for d in div(i):
        if d == i:
            continue
        ans[d] -= ans[i]
        ans[d] %= mod

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