結果

問題 No.2806 Cornflake Man
ユーザー a1048576a1048576
提出日時 2024-07-12 21:36:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 1,720 ms
コンパイル使用メモリ 178,636 KB
実行使用メモリ 25,224 KB
最終ジャッジ日時 2024-07-17 20:26:06
合計ジャッジ時間 4,826 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
9,216 KB
testcase_01 AC 255 ms
19,456 KB
testcase_02 AC 21 ms
5,376 KB
testcase_03 AC 268 ms
20,224 KB
testcase_04 AC 19 ms
5,376 KB
testcase_05 AC 41 ms
7,112 KB
testcase_06 AC 53 ms
6,784 KB
testcase_07 AC 343 ms
22,784 KB
testcase_08 AC 50 ms
6,528 KB
testcase_09 AC 149 ms
13,568 KB
testcase_10 AC 66 ms
8,832 KB
testcase_11 AC 9 ms
5,376 KB
testcase_12 AC 83 ms
9,980 KB
testcase_13 AC 197 ms
16,808 KB
testcase_14 AC 31 ms
6,144 KB
testcase_15 AC 285 ms
25,224 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>
using namespace std;
#define int long long
signed main() {
	int n,m;
	cin >> n >> m;
	set<int> s;
	vector<int> a(n);
	for(int i = 0; i < n; i++) cin >> a[i], s.insert(a[i]);
	sort(a.begin(),a.end());
	set<int> v;
	int ans = 0;
	vector<int> an;
	for(int i = 1; i < n; i++) {
		if(v.count(a[i])) continue;
		for(int j = a[i]; j <= m; j+=a[i]) {
			if(!s.count(j)) {
				cout << -1 << endl;
				return 0;
			}
			v.insert(j);
		}
		ans++;
		an.push_back(a[i]);
	}
	cout << ans << endl;
	for(int i = 0; i < ans; i++) cout << an[i] << ' ';
	cout << endl;
}
0