結果

問題 No.2211 Frequency Table of GCD
ユーザー Nzt3Nzt3
提出日時 2023-02-11 09:21:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 715 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 206,180 KB
実行使用メモリ 27,780 KB
最終ジャッジ日時 2024-07-08 00:36:52
合計ジャッジ時間 7,036 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 131 ms
24,184 KB
testcase_04 AC 96 ms
18,816 KB
testcase_05 AC 147 ms
21,500 KB
testcase_06 AC 131 ms
22,400 KB
testcase_07 AC 179 ms
25,408 KB
testcase_08 AC 8 ms
5,376 KB
testcase_09 AC 7 ms
5,376 KB
testcase_10 AC 15 ms
5,376 KB
testcase_11 AC 12 ms
5,376 KB
testcase_12 AC 16 ms
5,376 KB
testcase_13 AC 99 ms
18,048 KB
testcase_14 AC 159 ms
24,960 KB
testcase_15 AC 138 ms
23,140 KB
testcase_16 AC 150 ms
23,928 KB
testcase_17 AC 130 ms
21,312 KB
testcase_18 AC 195 ms
27,780 KB
testcase_19 AC 213 ms
27,776 KB
testcase_20 AC 208 ms
27,776 KB
testcase_21 AC 212 ms
27,648 KB
testcase_22 AC 227 ms
27,776 KB
testcase_23 AC 178 ms
26,112 KB
testcase_24 AC 230 ms
27,708 KB
testcase_25 AC 16 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 230 ms
27,708 KB
testcase_28 AC 202 ms
27,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int mod=998244353;


int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,M;
  cin>>N>>M;
  vector<int>cnt(M+1);
  vector<vector<int>>D(M+1);
  for(int i=1;i<=M;i++){
    for(int j=i;j<=M;j+=i){
      D[j].push_back(i);
    }
  }
  for(int i=0;i<N;i++){
    int A;
    cin>>A;
    for(int j:D[A]){
      ++cnt[j];
    }
  }
  vector<long long>beki(N+1);
  beki[0]=1;
  vector<int>ans(M+1);
  for(int i=0;i<N;i++){
    beki[i+1]=beki[i]*2%mod;
  }
  for(int i=M;i>=1;i--){
    ans[i]=beki[cnt[i]]-1;
    for(int j=i*2;j<=M;j+=i){
      ans[i]-=ans[j];
      if(ans[i]<0)ans[i]+=mod;
    }
  }
  for(int i=1;i<=M;i++){
    cout<<ans[i]<<'\n';
  }
}
0