結果

問題 No.2211 Frequency Table of GCD
ユーザー SSRSSSRS
提出日時 2023-02-10 21:31:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 738 bytes
コンパイル時間 1,671 ms
コンパイル使用メモリ 171,616 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-07-07 17:53:15
合計ジャッジ時間 7,432 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 213 ms
6,944 KB
testcase_04 AC 183 ms
6,944 KB
testcase_05 AC 206 ms
6,944 KB
testcase_06 AC 204 ms
6,940 KB
testcase_07 AC 242 ms
6,944 KB
testcase_08 AC 13 ms
6,940 KB
testcase_09 AC 10 ms
6,944 KB
testcase_10 AC 26 ms
6,940 KB
testcase_11 AC 19 ms
6,944 KB
testcase_12 AC 28 ms
6,944 KB
testcase_13 AC 161 ms
6,944 KB
testcase_14 AC 227 ms
6,940 KB
testcase_15 AC 203 ms
6,940 KB
testcase_16 AC 219 ms
6,940 KB
testcase_17 AC 211 ms
6,944 KB
testcase_18 AC 277 ms
7,936 KB
testcase_19 AC 273 ms
7,936 KB
testcase_20 AC 280 ms
7,936 KB
testcase_21 AC 280 ms
7,936 KB
testcase_22 AC 276 ms
7,936 KB
testcase_23 AC 228 ms
6,940 KB
testcase_24 AC 283 ms
7,936 KB
testcase_25 AC 30 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 276 ms
7,936 KB
testcase_28 AC 277 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 998244353;
int main(){
  int N, M;
  cin >> N >> M;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<int> cnt(M + 1, 0);
  for (int i = 0; i < N; i++){
    cnt[A[i]]++;
  }
  vector<long long> POW(N + 1);
  POW[0] = 1;
  for (int i = 0; i < N; i++){
    POW[i + 1] = POW[i] * 2 % MOD;
  }
  vector<long long> B(M + 1, 0);
  for (int i = 1; i <= M; i++){
    for (int j = i; j <= M; j += i){
      B[i] += cnt[j];
    }
    B[i] = POW[B[i]] - 1;
  }
  for (int i = M; i >= 1; i--){
    for (int j = i * 2; j <= M; j += i){
      B[i] += MOD - B[j];
    }
    B[i] %= MOD;
  }
  for (int i = 1; i <= M; i++){
    cout << B[i] << endl;
  }
}
0