結果

問題 No.2211 Frequency Table of GCD
ユーザー umezoumezo
提出日時 2023-02-10 23:05:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 697 bytes
コンパイル時間 2,044 ms
コンパイル使用メモリ 203,396 KB
実行使用メモリ 7,168 KB
最終ジャッジ日時 2024-07-07 18:10:13
合計ジャッジ時間 3,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,632 KB
testcase_01 AC 4 ms
5,760 KB
testcase_02 AC 4 ms
5,632 KB
testcase_03 AC 23 ms
6,400 KB
testcase_04 AC 24 ms
6,528 KB
testcase_05 AC 31 ms
6,784 KB
testcase_06 AC 27 ms
6,940 KB
testcase_07 AC 34 ms
6,940 KB
testcase_08 AC 8 ms
6,944 KB
testcase_09 AC 7 ms
6,944 KB
testcase_10 AC 12 ms
6,944 KB
testcase_11 AC 10 ms
6,940 KB
testcase_12 AC 12 ms
6,944 KB
testcase_13 AC 22 ms
6,940 KB
testcase_14 AC 28 ms
6,944 KB
testcase_15 AC 24 ms
6,940 KB
testcase_16 AC 26 ms
6,940 KB
testcase_17 AC 30 ms
6,944 KB
testcase_18 AC 42 ms
7,168 KB
testcase_19 AC 42 ms
7,168 KB
testcase_20 AC 43 ms
7,168 KB
testcase_21 AC 42 ms
7,168 KB
testcase_22 AC 42 ms
7,168 KB
testcase_23 AC 25 ms
6,944 KB
testcase_24 AC 40 ms
7,168 KB
testcase_25 AC 14 ms
6,944 KB
testcase_26 AC 4 ms
6,940 KB
testcase_27 AC 40 ms
7,040 KB
testcase_28 AC 42 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

const int MOD=998244353;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  vector<ll> P(200200);
  P[0]=1;
  for(int i=1;i<200200;i++) P[i]=P[i-1]*2%MOD;
  
  int n,m;
  cin>>n>>m;
  vector<int> A(n);
  rep(i,n)cin>>A[i];
  
  vector<int> B(200200);
  rep(i,n) B[A[i]]++;
  
  vector<int> ANS(m+1);
  for(int i=m;i>=1;i--){
    ll a=0,b=0;
    for(int j=i;j<=m;j+=i){
      a=(a+B[j])%MOD;
      if(j!=i) b=(b+ANS[j])%MOD;
    }
    ANS[i]=(P[a]-1-b+MOD)%MOD;
  }
  for(int i=1;i<=m;i++) cout<<ANS[i]<<'\n';
  
  return 0;
}
0