結果

問題 No.2211 Frequency Table of GCD
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-02-10 22:38:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 109,952 KB
最終ジャッジ日時 2024-07-07 18:09:03
合計ジャッジ時間 5,064 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
64,000 KB
testcase_01 AC 74 ms
64,512 KB
testcase_02 AC 73 ms
63,872 KB
testcase_03 AC 109 ms
79,488 KB
testcase_04 AC 112 ms
92,416 KB
testcase_05 AC 139 ms
102,144 KB
testcase_06 AC 125 ms
88,496 KB
testcase_07 AC 142 ms
99,584 KB
testcase_08 AC 88 ms
80,128 KB
testcase_09 AC 80 ms
74,752 KB
testcase_10 AC 98 ms
96,000 KB
testcase_11 AC 90 ms
86,912 KB
testcase_12 AC 98 ms
99,840 KB
testcase_13 AC 111 ms
88,960 KB
testcase_14 AC 127 ms
87,424 KB
testcase_15 AC 120 ms
83,840 KB
testcase_16 AC 135 ms
87,424 KB
testcase_17 AC 146 ms
99,456 KB
testcase_18 AC 134 ms
109,440 KB
testcase_19 AC 137 ms
109,952 KB
testcase_20 AC 136 ms
109,568 KB
testcase_21 AC 135 ms
109,568 KB
testcase_22 AC 136 ms
109,312 KB
testcase_23 AC 95 ms
79,712 KB
testcase_24 AC 134 ms
109,568 KB
testcase_25 AC 99 ms
102,656 KB
testcase_26 AC 70 ms
63,104 KB
testcase_27 AC 129 ms
109,952 KB
testcase_28 AC 124 ms
109,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ma = 2*10**5+1

divs = [0]*ma
dp = [0]*ma
for a in A:
    divs[a] += 1

for i in range(1,ma)[::-1]:
    count = 0
    num = 0
    for j in range(i,ma,i):
        count += divs[j]
        num += dp[j]
        num %= mod
    dp[i] = pow(2,count,mod)-1-num
    dp[i] %= mod
for i in range(1,m+1):
    print(dp[i])
0