結果

問題 No.2211 Frequency Table of GCD
ユーザー ttkkggwwttkkggww
提出日時 2023-02-10 22:38:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 768 bytes
コンパイル時間 4,389 ms
コンパイル使用メモリ 261,564 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-07-07 18:09:15
合計ジャッジ時間 9,718 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
6,912 KB
testcase_01 AC 16 ms
6,912 KB
testcase_02 AC 17 ms
6,912 KB
testcase_03 AC 222 ms
7,168 KB
testcase_04 AC 174 ms
7,040 KB
testcase_05 AC 203 ms
7,040 KB
testcase_06 AC 205 ms
7,296 KB
testcase_07 AC 238 ms
7,168 KB
testcase_08 AC 21 ms
7,040 KB
testcase_09 AC 19 ms
6,912 KB
testcase_10 AC 24 ms
7,040 KB
testcase_11 AC 23 ms
6,912 KB
testcase_12 AC 27 ms
6,912 KB
testcase_13 AC 165 ms
7,040 KB
testcase_14 AC 231 ms
7,168 KB
testcase_15 AC 213 ms
7,168 KB
testcase_16 AC 217 ms
7,168 KB
testcase_17 AC 194 ms
7,168 KB
testcase_18 AC 259 ms
7,296 KB
testcase_19 AC 261 ms
7,296 KB
testcase_20 AC 251 ms
7,296 KB
testcase_21 AC 266 ms
7,296 KB
testcase_22 AC 276 ms
7,296 KB
testcase_23 AC 243 ms
6,912 KB
testcase_24 AC 249 ms
7,040 KB
testcase_25 AC 27 ms
6,912 KB
testcase_26 AC 17 ms
6,912 KB
testcase_27 AC 255 ms
7,296 KB
testcase_28 AC 260 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//借りました
//https://kmjp.hatenablog.jp/entry/2017/04/30/0930
#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;

int N,A;
ll mo=998244353;

int num[201010];
ll p2[201010];
ll pat[201010];

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	p2[0]=1;
	for(int i = 0;i<201000;i++) p2[i+1]=p2[i]*2%mo;
	
	
	cin>>N >> k;
	for(int i = 0;i<N;i++){
		cin>>x;
		num[x]++;
	}
	for(i=1;i<=200000;i++) {
		for(j=i*2;j<=200000;j+=i) num[i]+=num[j];
		pat[i]=(p2[num[i]]+mo-1)%mo;
	}
	for(i=200000;i>=1;i--) {
		for(j=i*2;j<=200000;j+=i) pat[i]-=pat[j];
		pat[i]=(pat[i]%mo+mo)%mo;
	}
	for(int i = 1;i<=k;i++){
		cout<<pat[i]<<endl;
	}
}
signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	solve();
}
0