結果

問題 No.2211 Frequency Table of GCD
ユーザー qibqib
提出日時 2023-03-26 01:01:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 110,360 KB
最終ジャッジ日時 2024-09-19 05:08:38
合計ジャッジ時間 5,097 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,764 KB
testcase_01 AC 34 ms
52,220 KB
testcase_02 AC 38 ms
52,960 KB
testcase_03 AC 119 ms
86,624 KB
testcase_04 AC 122 ms
92,560 KB
testcase_05 AC 143 ms
101,948 KB
testcase_06 AC 129 ms
89,168 KB
testcase_07 AC 150 ms
99,176 KB
testcase_08 AC 51 ms
73,972 KB
testcase_09 AC 46 ms
69,508 KB
testcase_10 AC 66 ms
91,240 KB
testcase_11 AC 56 ms
81,048 KB
testcase_12 AC 65 ms
93,840 KB
testcase_13 AC 114 ms
89,384 KB
testcase_14 AC 135 ms
89,420 KB
testcase_15 AC 121 ms
87,808 KB
testcase_16 AC 127 ms
88,648 KB
testcase_17 AC 135 ms
98,592 KB
testcase_18 AC 170 ms
109,396 KB
testcase_19 AC 168 ms
109,376 KB
testcase_20 AC 168 ms
109,572 KB
testcase_21 AC 169 ms
109,444 KB
testcase_22 AC 173 ms
109,460 KB
testcase_23 AC 117 ms
87,448 KB
testcase_24 AC 154 ms
110,360 KB
testcase_25 AC 67 ms
97,580 KB
testcase_26 AC 31 ms
53,144 KB
testcase_27 AC 160 ms
109,624 KB
testcase_28 AC 153 ms
110,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353

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

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

mul = [0 for _ in range(m + 1)]
for x in range(1, m + 1):
  for y in range(x, m + 1, x):
    mul[x] += cnt[y]

dp = [0 for _ in range(m + 1)]
for x in range(m, 0, -1):
  dp[x] = (pow(2, mul[x], MOD) - 1) % MOD
  for y in range(2 * x, m + 1, x):
    dp[x] = (dp[x] - dp[y]) % MOD

print(*dp[1:], sep="\n")
0