結果

問題 No.2211 Frequency Table of GCD
ユーザー roarisroaris
提出日時 2023-02-18 03:53:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,444 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 107,392 KB
最終ジャッジ日時 2024-07-19 17:55:37
合計ジャッジ時間 19,098 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 136 ms
79,488 KB
testcase_04 AC 476 ms
91,904 KB
testcase_05 AC 752 ms
99,456 KB
testcase_06 AC 446 ms
88,064 KB
testcase_07 AC 726 ms
97,024 KB
testcase_08 AC 84 ms
82,304 KB
testcase_09 AC 75 ms
76,416 KB
testcase_10 AC 119 ms
97,664 KB
testcase_11 AC 99 ms
90,368 KB
testcase_12 AC 122 ms
100,608 KB
testcase_13 AC 429 ms
88,832 KB
testcase_14 AC 423 ms
87,040 KB
testcase_15 AC 295 ms
83,072 KB
testcase_16 AC 402 ms
87,040 KB
testcase_17 AC 668 ms
96,896 KB
testcase_18 AC 1,120 ms
107,136 KB
testcase_19 AC 1,332 ms
107,392 KB
testcase_20 AC 1,121 ms
106,624 KB
testcase_21 AC 1,154 ms
106,752 KB
testcase_22 AC 1,134 ms
107,136 KB
testcase_23 AC 128 ms
79,488 KB
testcase_24 AC 1,444 ms
107,264 KB
testcase_25 AC 92 ms
99,584 KB
testcase_26 AC 42 ms
51,840 KB
testcase_27 AC 1,343 ms
107,008 KB
testcase_28 AC 1,415 ms
107,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

for Ai in A:
    for d in range(1, int(Ai**0.5)+1):
        if Ai%d==0:
            cnt[d] += 1
            
            if d!=Ai//d:
                cnt[Ai//d] += 1

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