結果

問題 No.2211 Frequency Table of GCD
ユーザー qibqib
提出日時 2023-03-26 01:00:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 481 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 111,616 KB
最終ジャッジ日時 2024-09-19 05:07:58
合計ジャッジ時間 5,585 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
51,840 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
52,144 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 53 ms
73,728 KB
testcase_09 AC 48 ms
68,736 KB
testcase_10 AC 65 ms
89,216 KB
testcase_11 AC 57 ms
80,896 KB
testcase_12 AC 67 ms
93,184 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 72 ms
96,640 KB
testcase_26 AC 36 ms
52,096 KB
testcase_27 AC 172 ms
109,556 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

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):
  if cnt[x] == 0:
    continue
  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