結果

問題 No.2211 Frequency Table of GCD
ユーザー tassei903tassei903
提出日時 2023-02-11 02:09:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 107,904 KB
最終ジャッジ日時 2024-07-07 19:09:36
合計ジャッジ時間 6,123 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 140 ms
83,584 KB
testcase_04 AC 143 ms
90,368 KB
testcase_05 AC 164 ms
100,224 KB
testcase_06 AC 149 ms
86,272 KB
testcase_07 AC 174 ms
97,792 KB
testcase_08 AC 62 ms
73,216 KB
testcase_09 AC 58 ms
67,712 KB
testcase_10 AC 78 ms
89,088 KB
testcase_11 AC 71 ms
80,256 KB
testcase_12 AC 81 ms
92,544 KB
testcase_13 AC 138 ms
86,912 KB
testcase_14 AC 154 ms
86,192 KB
testcase_15 AC 143 ms
84,736 KB
testcase_16 AC 151 ms
85,776 KB
testcase_17 AC 160 ms
97,408 KB
testcase_18 AC 197 ms
107,776 KB
testcase_19 AC 195 ms
107,392 KB
testcase_20 AC 195 ms
107,776 KB
testcase_21 AC 193 ms
107,520 KB
testcase_22 AC 196 ms
107,776 KB
testcase_23 AC 142 ms
83,840 KB
testcase_24 AC 180 ms
107,648 KB
testcase_25 AC 84 ms
96,640 KB
testcase_26 AC 41 ms
51,840 KB
testcase_27 AC 185 ms
107,776 KB
testcase_28 AC 180 ms
107,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
mod = 998244353
n, m = na()
a = na()
g = [0] * (1+m)
for i in range(n):
    g[a[i]] += 1

for i in range(1, m + 1):
    for j in range(i*2, m+1, i):
        g[i] += g[j]

#print(*g)
for i in range(1, m+1):
    g[i] = pow(2, g[i], mod)-1

for i in range(m+1, 0, -1):
    for j in range(i * 2, m + 1, i):
        g[i] -= g[j]
        g[i] %= mod

print(*g[1:], sep = "\n")
0