結果

問題 No.2211 Frequency Table of GCD
ユーザー HydruHydru
提出日時 2023-02-10 22:13:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 828 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 122,368 KB
最終ジャッジ日時 2024-07-07 16:26:16
合計ジャッジ時間 22,854 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 35 ms
52,608 KB
testcase_03 AC 121 ms
89,344 KB
testcase_04 AC 711 ms
96,000 KB
testcase_05 AC 1,083 ms
109,824 KB
testcase_06 AC 654 ms
90,240 KB
testcase_07 AC 1,103 ms
106,112 KB
testcase_08 AC 93 ms
89,472 KB
testcase_09 AC 86 ms
83,648 KB
testcase_10 AC 140 ms
108,416 KB
testcase_11 AC 110 ms
97,792 KB
testcase_12 AC 145 ms
111,668 KB
testcase_13 AC 612 ms
91,792 KB
testcase_14 AC 622 ms
88,576 KB
testcase_15 AC 424 ms
86,972 KB
testcase_16 AC 599 ms
88,480 KB
testcase_17 AC 993 ms
106,020 KB
testcase_18 AC 1,592 ms
121,856 KB
testcase_19 TLE -
testcase_20 AC 1,624 ms
121,860 KB
testcase_21 AC 1,591 ms
121,856 KB
testcase_22 AC 1,617 ms
122,196 KB
testcase_23 AC 80 ms
94,068 KB
testcase_24 AC 1,494 ms
122,060 KB
testcase_25 AC 99 ms
117,760 KB
testcase_26 AC 36 ms
52,096 KB
testcase_27 AC 1,856 ms
121,728 KB
testcase_28 AC 1,506 ms
122,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisor_enumation(n):
    i=1
    result=set()
    while(i*i<n):
        if n%i==0:
            result.add(i)
            result.add(n//i)
        i+=1
    if i*i==n:
        result.add(i)
    return result

mod=998244353

n,m=map(int,input().split())
A=list(map(int,input().split()))

pow_2=[1]
for _ in range(n+1):
    pow_2.append(pow_2[-1]*2%mod)

cnt=[0 for _ in range(m+1)]

for i in range(n):
    a=A[i]
    n=1

    X=divisor_enumation(a)
    for u in X:
        cnt[u]+=1

dem=[0 for _ in range(m+1)]
ans=[]

for i in range(m,0,-1):
    
    ans.append((pow_2[cnt[i]]-1-dem[i])%mod)

    if pow_2[cnt[i]]-1-dem[i]==0:
        continue
    
    X=divisor_enumation(i)
    for u in X:
        if u==i:
            continue
        dem[u]+=pow_2[cnt[i]]-1-dem[i]
        dem[u]%=mod

for x in ans[::-1]:
    print(x)

0