結果

問題 No.2211 Frequency Table of GCD
ユーザー 沙耶花沙耶花
提出日時 2023-02-10 21:30:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 295 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 3,950 ms
コンパイル使用メモリ 264,268 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-07 17:52:05
合計ジャッジ時間 9,605 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,812 KB
testcase_01 AC 10 ms
6,940 KB
testcase_02 AC 10 ms
6,944 KB
testcase_03 AC 208 ms
6,940 KB
testcase_04 AC 175 ms
6,944 KB
testcase_05 AC 207 ms
6,944 KB
testcase_06 AC 199 ms
6,944 KB
testcase_07 AC 247 ms
6,940 KB
testcase_08 AC 20 ms
6,940 KB
testcase_09 AC 18 ms
6,940 KB
testcase_10 AC 33 ms
6,940 KB
testcase_11 AC 27 ms
6,940 KB
testcase_12 AC 39 ms
6,944 KB
testcase_13 AC 180 ms
6,944 KB
testcase_14 AC 231 ms
6,940 KB
testcase_15 AC 208 ms
6,940 KB
testcase_16 AC 228 ms
6,940 KB
testcase_17 AC 211 ms
6,944 KB
testcase_18 AC 279 ms
6,944 KB
testcase_19 AC 283 ms
6,944 KB
testcase_20 AC 277 ms
6,944 KB
testcase_21 AC 276 ms
6,940 KB
testcase_22 AC 278 ms
6,944 KB
testcase_23 AC 231 ms
6,944 KB
testcase_24 AC 272 ms
6,944 KB
testcase_25 AC 36 ms
6,940 KB
testcase_26 AC 10 ms
6,940 KB
testcase_27 AC 290 ms
6,944 KB
testcase_28 AC 295 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001



int main(){
	
	int N,M;
	cin>>N>>M;
	
	vector<int> a(200005);
	rep(i,N){
		int x;
		cin>>x;
		a[x]++;
	}
	
	vector<mint> g(a.size());
	for(int i=1;i<=200000;i++){
		int c = 0;
		for(int j=i;j<=200000;j+=i)c += a[j];
		g[i] = mint(2).pow(c)-1;
	}
	
	for(int i=200000;i>=1;i--){
		for(int j=i*2;j<=200000;j+=i)g[i] -= g[j];
	}
	
	for(int i =1;i<=M;i++){
		cout<<g[i].val()<<endl;
	}
	
	return 0;
}
0