結果

問題 No.2806 Cornflake Man
ユーザー toku4388toku4388
提出日時 2024-07-12 22:59:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,165 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 1,836 ms
コンパイル使用メモリ 180,084 KB
実行使用メモリ 72,224 KB
最終ジャッジ日時 2024-07-17 20:27:47
合計ジャッジ時間 6,688 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,165 ms
72,224 KB
testcase_01 AC 201 ms
18,944 KB
testcase_02 AC 19 ms
6,940 KB
testcase_03 AC 206 ms
19,584 KB
testcase_04 AC 17 ms
6,944 KB
testcase_05 AC 38 ms
7,168 KB
testcase_06 AC 46 ms
6,940 KB
testcase_07 AC 246 ms
22,016 KB
testcase_08 AC 44 ms
6,944 KB
testcase_09 AC 119 ms
13,312 KB
testcase_10 AC 58 ms
8,320 KB
testcase_11 AC 9 ms
6,940 KB
testcase_12 AC 75 ms
9,472 KB
testcase_13 AC 157 ms
16,076 KB
testcase_14 AC 30 ms
6,940 KB
testcase_15 AC 279 ms
23,648 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
	int n, m;
	cin >> n >> m;
	vector<int> a(n);
	for (int i = 0; i < n; i++) {
		cin >> a[i];
	}
	sort(a.begin(), a.end());
	set<int> s;
	vector<int> ans;
	bool isok = true;
	for (int i = 0; i < n; i++) {
		if (a[i] == 0) continue;
		if (s.count(a[i])) continue;
		if (m / a[i] > n) {
			isok = false;
			break;
		}
		ans.push_back(a[i]);
		for (int j = 1; (ll)j * a[i] <= m; j++) {
			s.insert(j * a[i]);
		}
	}
	set<int> sa;
	for (int i = 0; i < n; i++) {
		sa.insert(a[i]);
	}
	for (auto v : s) {
		if (!sa.count(v)) {
			isok = false;
			break;
		}
	}
	if (isok) {
		int sz = ans.size();
		cout << sz << endl;
		for (int i = 0; i < sz; i++) {
			cout << ans[i];
			if (i == sz - 1)
				cout << endl;
			else
				cout << " ";
		}
	} else {
		cout << -1 << endl;
	}
	return 0;
}
0