結果

問題 No.2806 Cornflake Man
ユーザー keisuke6keisuke6
提出日時 2024-07-04 22:51:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 715 bytes
コンパイル時間 2,419 ms
コンパイル使用メモリ 215,848 KB
実行使用メモリ 24,356 KB
最終ジャッジ日時 2024-07-04 23:26:21
合計ジャッジ時間 9,012 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
signed main() {
	int N,M;
	cin>>N>>M;
	unordered_set<int> s,ss;
	vector<int> A(N);
	for(int i=0;i<N;i++){
		cin>>A[i];
		ss.insert(A[i]);
	} 
	sort(A.begin(),A.end());
	for(int i=1;i<N;i++){
		bool p = true;
		for(int j=1;j*j<=A[i];j++)if(A[i]%j == 0){
			if(s.count(j) || s.count(A[i]/j)) p = false;
		}
		if(p) s.insert(A[i]);
	}
	unordered_set<int> t;
	t.insert(0);
	for(int x:s)for(int i=x;i<=M;i+=x){
		t.insert(i);
		if(t.size() > ss.size()) break;
	}
	if(ss != t){
		cout<<-1<<endl;
		return 0;
	}
	vector<int> a = {};
	for(int x:s) a.push_back(x);
	sort(a.begin(),a.end());
	cout<<a.size()<<endl;
	for(int x:a) cout<<x<<' ';
	cout<<endl;
}
0