結果
問題 | No.2211 Frequency Table of GCD |
ユーザー | maksim |
提出日時 | 2023-02-10 21:27:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 44 ms / 2,000 ms |
コード長 | 756 bytes |
コンパイル時間 | 1,680 ms |
コンパイル使用メモリ | 167,740 KB |
実行使用メモリ | 9,728 KB |
最終ジャッジ日時 | 2024-07-07 17:51:44 |
合計ジャッジ時間 | 3,762 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 15 ms
6,656 KB |
testcase_01 | AC | 15 ms
6,656 KB |
testcase_02 | AC | 14 ms
6,528 KB |
testcase_03 | AC | 24 ms
8,064 KB |
testcase_04 | AC | 29 ms
8,192 KB |
testcase_05 | AC | 35 ms
8,960 KB |
testcase_06 | AC | 29 ms
8,376 KB |
testcase_07 | AC | 38 ms
8,920 KB |
testcase_08 | AC | 18 ms
7,168 KB |
testcase_09 | AC | 17 ms
7,040 KB |
testcase_10 | AC | 23 ms
7,680 KB |
testcase_11 | AC | 21 ms
7,552 KB |
testcase_12 | AC | 24 ms
7,936 KB |
testcase_13 | AC | 27 ms
8,192 KB |
testcase_14 | AC | 30 ms
8,448 KB |
testcase_15 | AC | 26 ms
8,312 KB |
testcase_16 | AC | 28 ms
8,268 KB |
testcase_17 | AC | 33 ms
8,704 KB |
testcase_18 | AC | 43 ms
9,600 KB |
testcase_19 | AC | 44 ms
9,600 KB |
testcase_20 | AC | 44 ms
9,696 KB |
testcase_21 | AC | 44 ms
9,728 KB |
testcase_22 | AC | 43 ms
9,728 KB |
testcase_23 | AC | 24 ms
6,528 KB |
testcase_24 | AC | 38 ms
8,192 KB |
testcase_25 | AC | 24 ms
8,064 KB |
testcase_26 | AC | 15 ms
6,656 KB |
testcase_27 | AC | 40 ms
9,728 KB |
testcase_28 | AC | 37 ms
8,064 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long const int maxn=2e5+5; const int p=998244353; int cnt[maxn];int h[maxn];int po2[maxn]; int32_t main() { ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0); po2[0]=1;for(int i=1;i<maxn;++i) po2[i]=(po2[i-1]*2)%p; int n,m;cin>>n>>m;int a[n]; for(int i=0;i<n;++i) { cin>>a[i];cnt[a[i]]++; } for(int i=1;i<maxn;++i) { for(int j=i;j<maxn;j+=i) { h[i]+=cnt[j]; } h[i]=po2[h[i]]-1; } for(int i=maxn-1;i>=1;--i) { for(int j=2*i;j<maxn;j+=i) { h[i]-=h[j];h[i]%=p; } } for(int i=1;i<=m;++i) { cout<<(h[i]%p+p)%p<<'\n'; } return 0; }