結果

問題 No.2211 Frequency Table of GCD
ユーザー FromBooskaFromBooska
提出日時 2023-09-01 19:19:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 841 bytes
コンパイル時間 1,503 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 115,280 KB
最終ジャッジ日時 2024-06-11 02:38:39
合計ジャッジ時間 8,339 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,004 KB
testcase_01 AC 42 ms
53,668 KB
testcase_02 AC 40 ms
53,504 KB
testcase_03 AC 189 ms
80,028 KB
testcase_04 AC 192 ms
102,104 KB
testcase_05 AC 241 ms
115,072 KB
testcase_06 AC 192 ms
96,624 KB
testcase_07 AC 272 ms
113,828 KB
testcase_08 AC 57 ms
77,196 KB
testcase_09 AC 55 ms
71,268 KB
testcase_10 AC 74 ms
94,316 KB
testcase_11 AC 68 ms
84,024 KB
testcase_12 AC 81 ms
98,056 KB
testcase_13 AC 184 ms
97,376 KB
testcase_14 AC 213 ms
94,592 KB
testcase_15 AC 211 ms
86,128 KB
testcase_16 AC 205 ms
93,044 KB
testcase_17 AC 234 ms
111,828 KB
testcase_18 AC 324 ms
106,276 KB
testcase_19 AC 307 ms
106,420 KB
testcase_20 AC 294 ms
106,448 KB
testcase_21 AC 312 ms
106,340 KB
testcase_22 AC 323 ms
106,664 KB
testcase_23 AC 106 ms
79,668 KB
testcase_24 AC 153 ms
106,624 KB
testcase_25 AC 85 ms
101,832 KB
testcase_26 AC 41 ms
53,888 KB
testcase_27 AC 239 ms
115,280 KB
testcase_28 AC 169 ms
106,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ABC162Eの考え方を使えるか
# Aの要素をCounter
# k=Mから降順で求める
# k=mとなるのはすべてがmの倍数の個数をべき乗数とた2のべき乗、引く、mの倍数のときのパターン巣

N, M = map(int, input().split())
A = list(map(int, input().split()))

from collections import Counter
counted = Counter(A)
maxA = max(A)
patterns = [0]*(M+1)
mod = 998244353
for k in range(M, 0, -1):
    multiple_count = 0
    deduct = 0
    for j in range(k, maxA+1, k):
        multiple_count += counted[j]
        deduct += patterns[j]
    calc = 0
    if multiple_count > 0:
        calc += pow(2, multiple_count, mod)-1
    calc -= deduct
    #print('k', k, 'multiple_count', multiple_count, 'deduct', deduct, 'calc', calc)
    patterns[k] = calc%mod
    
#print(patterns)

for p in patterns[1:]:
    print(p)
0