結果

問題 No.2211 Frequency Table of GCD
ユーザー simansiman
提出日時 2023-02-13 17:24:01
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 363 ms / 2,000 ms
コード長 1,120 bytes
コンパイル時間 1,706 ms
コンパイル使用メモリ 141,788 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-16 11:18:18
合計ジャッジ時間 9,375 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 253 ms
6,940 KB
testcase_04 AC 216 ms
6,940 KB
testcase_05 AC 268 ms
6,944 KB
testcase_06 AC 256 ms
6,940 KB
testcase_07 AC 307 ms
6,940 KB
testcase_08 AC 18 ms
6,944 KB
testcase_09 AC 13 ms
6,944 KB
testcase_10 AC 36 ms
6,944 KB
testcase_11 AC 26 ms
6,940 KB
testcase_12 AC 39 ms
6,944 KB
testcase_13 AC 208 ms
6,944 KB
testcase_14 AC 282 ms
6,940 KB
testcase_15 AC 253 ms
6,944 KB
testcase_16 AC 266 ms
6,944 KB
testcase_17 AC 261 ms
6,940 KB
testcase_18 AC 363 ms
6,940 KB
testcase_19 AC 362 ms
6,944 KB
testcase_20 AC 358 ms
6,940 KB
testcase_21 AC 363 ms
6,948 KB
testcase_22 AC 357 ms
6,940 KB
testcase_23 AC 274 ms
6,940 KB
testcase_24 AC 341 ms
6,944 KB
testcase_25 AC 36 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 333 ms
6,940 KB
testcase_28 AC 339 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

const ll MOD = 998244353;

ll mod_pow(ll x, ll n, ll mod = MOD) {
  ll res = 1;

  while (n > 0) {
    if (n & 1) {
      res = res * x % mod;
    }

    x = x * x % mod;
    n >>= 1;
  }

  return res;
}

int main() {
  int N, M;
  cin >> N >> M;

  int counter[M + 1];
  memset(counter, 0, sizeof(counter));

  vector<int> A(N);
  for (int i = 0; i < N; ++i) {
    cin >> A[i];
    ++counter[A[i]];
  }
  sort(A.begin(), A.end());
  reverse(A.begin(), A.end());

  vector<ll> ans(M + 1, 0);

  for (int a = M; a >= 1; --a) {
    ll cnt = 0;

    int v = a;
    while (v <= M) {
      cnt += counter[v];
      v += a;
    }

    ll c = (mod_pow(2, cnt) - 1 + MOD) % MOD;
    v = 2 * a;
    while (v <= M) {
      c -= ans[v];
      c = (c + MOD) % MOD;
      v += a;
    }

    ans[a] = c;
  }

  for (int m = 1; m <= M; ++m) {
    cout << ans[m] << endl;
  }

  return 0;
}
0