結果

問題 No.2211 Frequency Table of GCD
ユーザー planesplanes
提出日時 2023-02-10 21:42:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 575 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 1,562 ms
コンパイル使用メモリ 180,212 KB
実行使用メモリ 53,528 KB
最終ジャッジ日時 2024-07-07 17:55:10
合計ジャッジ時間 11,509 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 351 ms
36,380 KB
testcase_04 AC 311 ms
31,540 KB
testcase_05 AC 410 ms
37,376 KB
testcase_06 AC 392 ms
36,900 KB
testcase_07 AC 477 ms
43,536 KB
testcase_08 AC 15 ms
6,944 KB
testcase_09 AC 12 ms
6,948 KB
testcase_10 AC 31 ms
6,944 KB
testcase_11 AC 23 ms
6,940 KB
testcase_12 AC 33 ms
6,940 KB
testcase_13 AC 284 ms
29,824 KB
testcase_14 AC 422 ms
40,572 KB
testcase_15 AC 355 ms
36,640 KB
testcase_16 AC 376 ms
38,836 KB
testcase_17 AC 373 ms
36,784 KB
testcase_18 AC 544 ms
49,008 KB
testcase_19 AC 573 ms
49,008 KB
testcase_20 AC 536 ms
48,972 KB
testcase_21 AC 575 ms
48,920 KB
testcase_22 AC 550 ms
48,944 KB
testcase_23 AC 397 ms
39,460 KB
testcase_24 AC 468 ms
40,992 KB
testcase_25 AC 31 ms
6,940 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 508 ms
53,528 KB
testcase_28 AC 443 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

  #include <bits/stdc++.h> 
using namespace std;
using ll =long long;
#define all(v) v.begin(),v.end()
 #define rep(i,a,b) for(int i=a;i<b;i++)
#define rrep(i,a,b) for(int i=a;i>=b;i--)

ll mod=998244353;


int main() {
ll N,M;cin>>N>>M;
map<ll,ll> A;
for(ll i=0;i<N;i++) {
  ll a;cin>>a;
  A[a]++;
}




vector<vector<ll>> note(M+1,vector<ll> (0));
for(ll i=1;i<=M;i++) {
  for(ll j=1;j*i<=M;j++) {
    note[i*j].push_back(i);
  }
}

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


for(auto x:A) {
  for(auto t:note[x.first]) {
    memo[t]+=x.second;
  }
}

vector<ll> t(N+1);
t[0]=1;
for(ll i=1;i<=N;i++) {
  t[i]=t[i-1]*2;
  t[i]%=mod;
}

vector<ll> dp(M+1,0);
for(ll i=M;i>=1;i--) {
  dp[i]=t[memo[i]]-1;
  for(ll j=2;i*j<=M;j++) {
    dp[i]-=dp[i*j];
    dp[i]%=mod;
  }
}

for(ll i=1;i<=M;i++) {
  dp[i]%=mod;
  if(dp[i]<0) dp[i]+=mod;
  cout<<dp[i]<<endl;
}
}

0