結果

問題 No.2211 Frequency Table of GCD
ユーザー FromBooskaFromBooska
提出日時 2023-03-05 10:11:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 300 ms / 2,000 ms
コード長 1,198 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 116,056 KB
最終ジャッジ日時 2024-09-18 01:30:05
合計ジャッジ時間 7,784 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,584 KB
testcase_01 AC 41 ms
53,948 KB
testcase_02 AC 42 ms
54,032 KB
testcase_03 AC 179 ms
80,028 KB
testcase_04 AC 208 ms
102,068 KB
testcase_05 AC 243 ms
116,056 KB
testcase_06 AC 199 ms
96,440 KB
testcase_07 AC 262 ms
114,160 KB
testcase_08 AC 56 ms
76,488 KB
testcase_09 AC 57 ms
72,736 KB
testcase_10 AC 75 ms
94,480 KB
testcase_11 AC 63 ms
84,088 KB
testcase_12 AC 76 ms
97,656 KB
testcase_13 AC 189 ms
97,444 KB
testcase_14 AC 209 ms
94,400 KB
testcase_15 AC 204 ms
86,336 KB
testcase_16 AC 201 ms
93,672 KB
testcase_17 AC 235 ms
112,424 KB
testcase_18 AC 295 ms
106,244 KB
testcase_19 AC 300 ms
106,396 KB
testcase_20 AC 293 ms
106,180 KB
testcase_21 AC 291 ms
106,232 KB
testcase_22 AC 291 ms
106,336 KB
testcase_23 AC 132 ms
79,712 KB
testcase_24 AC 176 ms
106,504 KB
testcase_25 AC 78 ms
101,636 KB
testcase_26 AC 39 ms
55,184 KB
testcase_27 AC 247 ms
115,648 KB
testcase_28 AC 182 ms
106,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# ABC162E の考え方が使えるか
# 最大公約数がMになるのはすべてがMのときのみ
# Mがn個あるなら、その取り方の総数は2**n -1
# 最大公約数があるmになるのは、すべての要素がmとmの倍数の総数から、それら倍数での数を引いたもの
# M降順で計算していく
# Aからの取り方は不連続でOK、ということは最初にどの数字が何個あるか数えておくか

N, M = map(int, input().split())
A = list(map(int, input().split()))
mod = 998244353
from collections import Counter
counted = Counter(A)

patterns = [0]*(M+1)

for k in range(M, 0, -1):
    k_count = counted[k]
    total_count = k_count
    already_counted = 0
    for j in range(k*2, M+1, k):
        #print(k, j)
        total_count += counted[j] 
        #modで足し算引き算掛け算ではmodとってよいが乗数はダメだろう
        already_counted += patterns[j]
    calc = pow(2, total_count, mod) - 1 - already_counted
    patterns[k] = calc%mod
    #print('k', k, 'k_count', k_count, 'total_count', total_count, 'already_counted', already_counted, 'calc', calc)
    
#print(patterns)

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