結果

問題 No.2806 Cornflake Man
ユーザー cho435cho435
提出日時 2024-07-12 23:09:33
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 893 bytes
コンパイル時間 4,248 ms
コンパイル使用メモリ 268,824 KB
実行使用メモリ 22,912 KB
最終ジャッジ日時 2024-07-17 20:27:54
合計ジャッジ時間 6,546 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
14,080 KB
testcase_01 AC 145 ms
18,944 KB
testcase_02 AC 15 ms
5,888 KB
testcase_03 AC 154 ms
19,584 KB
testcase_04 AC 13 ms
5,632 KB
testcase_05 AC 24 ms
7,168 KB
testcase_06 AC 36 ms
9,648 KB
testcase_07 AC 199 ms
22,016 KB
testcase_08 AC 33 ms
9,196 KB
testcase_09 AC 86 ms
13,440 KB
testcase_10 AC 41 ms
8,576 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 54 ms
9,856 KB
testcase_13 AC 128 ms
16,384 KB
testcase_14 AC 20 ms
6,400 KB
testcase_15 AC 159 ms
22,912 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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