結果

問題 No.2806 Cornflake Man
ユーザー kotatsugamekotatsugame
提出日時 2024-07-12 21:25:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 79,880 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-07-17 20:25:36
合計ジャッジ時間 2,762 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
13,824 KB
testcase_01 AC 129 ms
18,432 KB
testcase_02 AC 13 ms
6,940 KB
testcase_03 AC 137 ms
19,200 KB
testcase_04 AC 11 ms
6,944 KB
testcase_05 AC 22 ms
6,944 KB
testcase_06 AC 31 ms
9,600 KB
testcase_07 AC 178 ms
21,504 KB
testcase_08 AC 29 ms
8,960 KB
testcase_09 AC 76 ms
13,056 KB
testcase_10 AC 38 ms
8,192 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 47 ms
9,472 KB
testcase_13 AC 109 ms
15,488 KB
testcase_14 AC 18 ms
6,944 KB
testcase_15 AC 157 ms
22,272 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<set>
#include<vector>
#include<cassert>
using namespace std;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int N,M;
	cin>>N>>M;
	set<int>EX;
	for(int i=0;i<N;i++)
	{
		int a;cin>>a;
		if(a)EX.insert(a);
	}
	set<int>rest=EX;
	vector<int>ans;
	while(!rest.empty())
	{
		int a=*rest.begin();
		ans.push_back(a);
		for(int b=a;b<=M;b+=a)
		{
			if(EX.find(b)==EX.end())
			{
				cout<<-1<<endl;
				return 0;
			}
			rest.erase(b);
		}
	}
	cout<<ans.size()<<"\n";
	for(int i=0;i<ans.size();i++)cout<<ans[i]<<(i+1==ans.size()?"\n":" ");
}
0