結果

問題 No.2211 Frequency Table of GCD
ユーザー minimumminimum
提出日時 2023-02-10 23:30:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 514 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 109,952 KB
最終ジャッジ日時 2024-07-07 18:11:00
合計ジャッジ時間 4,934 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,096 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 33 ms
51,840 KB
testcase_03 AC 106 ms
79,232 KB
testcase_04 AC 110 ms
91,956 KB
testcase_05 AC 129 ms
101,624 KB
testcase_06 AC 126 ms
87,936 KB
testcase_07 AC 145 ms
99,072 KB
testcase_08 AC 52 ms
73,856 KB
testcase_09 AC 46 ms
68,224 KB
testcase_10 AC 65 ms
89,216 KB
testcase_11 AC 59 ms
80,768 KB
testcase_12 AC 69 ms
92,928 KB
testcase_13 AC 116 ms
88,448 KB
testcase_14 AC 126 ms
86,784 KB
testcase_15 AC 121 ms
82,944 KB
testcase_16 AC 126 ms
86,400 KB
testcase_17 AC 135 ms
98,688 KB
testcase_18 AC 163 ms
109,312 KB
testcase_19 AC 162 ms
109,568 KB
testcase_20 AC 161 ms
109,568 KB
testcase_21 AC 162 ms
109,568 KB
testcase_22 AC 161 ms
109,312 KB
testcase_23 AC 115 ms
79,232 KB
testcase_24 AC 154 ms
109,696 KB
testcase_25 AC 72 ms
96,128 KB
testcase_26 AC 34 ms
51,584 KB
testcase_27 AC 157 ms
109,440 KB
testcase_28 AC 149 ms
109,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
N, M = map(int, input().split())
A = list(map(int, input().split()))
cnt = [0] * (M + 1)
for i in range(N):
    cnt[A[i]] += 1

for i in range(1, M + 1):
    j = 2 * i
    while j <= M:
        cnt[i] += cnt[j]
        cnt[i] %= MOD
        j += i
    cnt[i] = (pow(2, cnt[i], MOD) - 1) % MOD

ans = [0] * (M + 1)
for i in range(M, 0, -1):
    ans[i] = cnt[i]
    j = 2 * i
    while j <= M:
        ans[i] -= ans[j]
        ans[i] %= MOD
        j += i

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