結果

問題 No.2211 Frequency Table of GCD
ユーザー ntudantuda
提出日時 2023-02-13 18:03:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 403 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 81,848 KB
実行使用メモリ 110,308 KB
最終ジャッジ日時 2024-07-16 11:28:25
合計ジャッジ時間 5,335 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,776 KB
testcase_01 AC 40 ms
52,456 KB
testcase_02 AC 38 ms
53,064 KB
testcase_03 AC 116 ms
79,560 KB
testcase_04 AC 125 ms
91,916 KB
testcase_05 AC 146 ms
101,628 KB
testcase_06 AC 130 ms
88,000 KB
testcase_07 AC 150 ms
99,288 KB
testcase_08 AC 56 ms
75,324 KB
testcase_09 AC 50 ms
69,320 KB
testcase_10 AC 71 ms
89,700 KB
testcase_11 AC 62 ms
81,172 KB
testcase_12 AC 72 ms
93,400 KB
testcase_13 AC 116 ms
88,668 KB
testcase_14 AC 133 ms
87,112 KB
testcase_15 AC 121 ms
83,256 KB
testcase_16 AC 131 ms
87,196 KB
testcase_17 AC 139 ms
98,768 KB
testcase_18 AC 166 ms
109,624 KB
testcase_19 AC 169 ms
109,784 KB
testcase_20 AC 169 ms
109,564 KB
testcase_21 AC 168 ms
109,812 KB
testcase_22 AC 168 ms
109,440 KB
testcase_23 AC 117 ms
79,452 KB
testcase_24 AC 162 ms
110,308 KB
testcase_25 AC 77 ms
96,640 KB
testcase_26 AC 40 ms
53,100 KB
testcase_27 AC 169 ms
109,636 KB
testcase_28 AC 158 ms
110,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

F = [0] * (M + 1)
G = [0] * (M + 1)

for a in A:
    F[a] += 1

fcnt = 0
for i in reversed(range(1, M + 1)):
    fcnt = F[i]
    gcnt = 0
    for j in range(2 * i, M + 1, i):
        fcnt += F[j]
        gcnt += G[j]
    tmp = pow(2, fcnt, MOD) - 1 - gcnt
    G[i] = tmp % MOD

for i in range(1,M+1):
    print(G[i])
0