結果

問題 No.2211 Frequency Table of GCD
ユーザー roarisroaris
提出日時 2023-02-18 03:57:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 549 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 117,768 KB
最終ジャッジ日時 2024-07-19 17:58:43
合計ジャッジ時間 7,250 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,632 KB
testcase_01 AC 50 ms
53,632 KB
testcase_02 AC 46 ms
53,760 KB
testcase_03 AC 195 ms
80,000 KB
testcase_04 AC 212 ms
101,632 KB
testcase_05 AC 243 ms
113,920 KB
testcase_06 AC 220 ms
95,744 KB
testcase_07 AC 265 ms
113,152 KB
testcase_08 AC 71 ms
77,312 KB
testcase_09 AC 65 ms
71,680 KB
testcase_10 AC 89 ms
95,104 KB
testcase_11 AC 80 ms
84,992 KB
testcase_12 AC 94 ms
98,688 KB
testcase_13 AC 194 ms
96,896 KB
testcase_14 AC 217 ms
93,568 KB
testcase_15 AC 226 ms
85,760 KB
testcase_16 AC 205 ms
92,672 KB
testcase_17 AC 234 ms
111,104 KB
testcase_18 AC 332 ms
104,832 KB
testcase_19 AC 310 ms
104,960 KB
testcase_20 AC 312 ms
104,704 KB
testcase_21 AC 324 ms
104,960 KB
testcase_22 AC 323 ms
105,216 KB
testcase_23 AC 159 ms
80,000 KB
testcase_24 AC 200 ms
105,088 KB
testcase_25 AC 97 ms
102,784 KB
testcase_26 AC 46 ms
54,016 KB
testcase_27 AC 275 ms
117,768 KB
testcase_28 AC 205 ms
105,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

N, M = map(int, input().split())
A = list(map(int, input().split()))
mp = Counter(A)
cnt = [0]*(M+1)

for d in range(1, M+1):
    for x in range(d, M+1, d):
        cnt[d] += mp[x]
        
ans = [0]*(M+1)
MOD = 998244353
pow2 = [1]*(N+10)

for i in range(1, N+10):
    pow2[i] = pow2[i-1]*2%MOD

for d in range(M, 0, -1):
    ans[d] = (pow2[cnt[d]]-1)%MOD
    
    for x in range(2*d, M+1, d):
        ans[d] -= ans[x]
        ans[d] %= MOD

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