結果

問題 No.2211 Frequency Table of GCD
ユーザー flygonflygon
提出日時 2023-02-10 22:30:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 675 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 110,428 KB
最終ジャッジ日時 2024-07-07 18:07:43
合計ジャッジ時間 4,561 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
51,968 KB
testcase_01 AC 33 ms
52,564 KB
testcase_02 AC 31 ms
52,224 KB
testcase_03 AC 101 ms
84,928 KB
testcase_04 AC 109 ms
91,644 KB
testcase_05 AC 127 ms
101,760 KB
testcase_06 AC 111 ms
87,800 KB
testcase_07 AC 129 ms
99,328 KB
testcase_08 AC 47 ms
73,984 KB
testcase_09 AC 45 ms
68,480 KB
testcase_10 AC 59 ms
89,472 KB
testcase_11 AC 52 ms
80,384 KB
testcase_12 AC 61 ms
93,312 KB
testcase_13 AC 101 ms
88,520 KB
testcase_14 AC 113 ms
87,628 KB
testcase_15 AC 106 ms
86,272 KB
testcase_16 AC 109 ms
87,416 KB
testcase_17 AC 120 ms
98,816 KB
testcase_18 AC 149 ms
109,824 KB
testcase_19 AC 148 ms
109,724 KB
testcase_20 AC 151 ms
109,696 KB
testcase_21 AC 149 ms
109,820 KB
testcase_22 AC 148 ms
109,696 KB
testcase_23 AC 99 ms
85,648 KB
testcase_24 AC 136 ms
110,428 KB
testcase_25 AC 64 ms
96,384 KB
testcase_26 AC 32 ms
52,608 KB
testcase_27 AC 141 ms
109,692 KB
testcase_28 AC 136 ms
110,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
a = list(map(int,input().split()))
mod = 998244353
cnt = [0]*(m+10)
for i in range(n):
  cnt[a[i]] += 1

ans = [0]*(m+1)

for i in range(1, m+1)[::-1]:
  tmp = 0
  for j in range(i, m+1, i):
    tmp += cnt[j]
  mn = 0
  for j in range(i,m+1, i):
    mn += ans[j]
  ans[i] = pow(2, tmp, mod) - 1 - mn
  ans[i] %= mod

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