結果

問題 No.2806 Cornflake Man
ユーザー cho435
提出日時 2024-07-12 23:09:33
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 5,387 ms
コンパイル使用メモリ 256,400 KB
最終ジャッジ日時 2025-02-22 05:18:20
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (ll i = s; i < (ll)(t); i++)

template<typename T>
bool chmin(T &x, T y) { return x > y ? (x = y, true) : false; }
template<typename T>
bool chmax(T &x, T y) { return x < y ? (x = y, true) : false; }

struct io_setup {
	io_setup() {
		ios::sync_with_stdio(false);
		std::cin.tie(nullptr);
		cout << fixed << setprecision(15);
	}
} io_setup;

using mint = atcoder::modint1000000007;

int main(){
	int n,m;
	cin>>n>>m;
	vector<int> a(n);
	rep(i,0,n) cin>>a.at(i);
	set<int> st;
	rep(i,1,n) st.insert(a.at(i));
	auto cst=st;
	vector<int> b;
	while(!st.empty()){
		int nw=*st.begin();
		for(int i=nw;i<=m;i+=nw){
			if(!cst.count(i)){
				cout<<"-1\n";
				return 0;
			}
			st.erase(i);
		}
		b.push_back(nw);
	}
	cout<<b.size()<<"\n";
	for(auto x:b) cout<<x<<" ";
	cout<<"\n";
}
0