結果

問題 No.2211 Frequency Table of GCD
ユーザー timitimi
提出日時 2023-02-11 16:11:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,631 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 130,948 KB
最終ジャッジ日時 2024-07-08 04:37:19
合計ジャッジ時間 19,905 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,840 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 36 ms
52,096 KB
testcase_03 AC 118 ms
80,512 KB
testcase_04 AC 563 ms
98,136 KB
testcase_05 AC 891 ms
105,716 KB
testcase_06 AC 498 ms
96,076 KB
testcase_07 AC 847 ms
106,012 KB
testcase_08 AC 95 ms
85,248 KB
testcase_09 AC 86 ms
81,152 KB
testcase_10 AC 141 ms
97,868 KB
testcase_11 AC 113 ms
90,496 KB
testcase_12 AC 146 ms
100,480 KB
testcase_13 AC 466 ms
93,840 KB
testcase_14 AC 469 ms
93,884 KB
testcase_15 AC 316 ms
89,068 KB
testcase_16 AC 449 ms
92,376 KB
testcase_17 AC 796 ms
101,564 KB
testcase_18 AC 1,294 ms
116,516 KB
testcase_19 AC 1,584 ms
116,204 KB
testcase_20 AC 1,325 ms
116,404 KB
testcase_21 AC 1,325 ms
116,316 KB
testcase_22 AC 1,329 ms
116,436 KB
testcase_23 AC 74 ms
79,160 KB
testcase_24 AC 1,629 ms
106,992 KB
testcase_25 AC 101 ms
103,680 KB
testcase_26 AC 35 ms
51,840 KB
testcase_27 AC 1,527 ms
130,948 KB
testcase_28 AC 1,631 ms
106,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

D={}
def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]
E=[]
for a in A:
  AA=make_divisors(a)
  for b in AA:
    if b not in D:
      D[b]=0
      E.append(b)
    D[b]+=1

ans=[0]*(M+1)
mod=998244353 
E=sorted(E)[::-1]
dd=0
for e in E:
  d=D[e]
  p=(pow(2,d,mod)-1)%mod
  dd+=p
  ans[e]+=p
  ans[e]%=mod
  now=e 
  while now+e<=M:
    now+=e 
    ans[e]-=ans[now] 
    ans[e]%=mod 
ans=ans[1:]
for i in range(M):
  print(ans[i])
0