結果

問題 No.2806 Cornflake Man
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2024-07-12 22:29:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 394 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 2,211 ms
コンパイル使用メモリ 214,180 KB
実行使用メモリ 23,964 KB
最終ジャッジ日時 2024-07-17 20:27:26
合計ジャッジ時間 5,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 156 ms
14,108 KB
testcase_01 AC 302 ms
18,944 KB
testcase_02 AC 29 ms
6,940 KB
testcase_03 AC 317 ms
19,584 KB
testcase_04 AC 25 ms
6,940 KB
testcase_05 AC 44 ms
7,168 KB
testcase_06 AC 78 ms
9,632 KB
testcase_07 AC 394 ms
22,016 KB
testcase_08 AC 68 ms
9,176 KB
testcase_09 AC 169 ms
13,184 KB
testcase_10 AC 77 ms
8,576 KB
testcase_11 AC 9 ms
6,940 KB
testcase_12 AC 108 ms
9,856 KB
testcase_13 AC 257 ms
16,384 KB
testcase_14 AC 36 ms
6,944 KB
testcase_15 AC 325 ms
23,964 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
	int N, M;
	cin >> N >> M;
	std::vector<int> A(N);
	set<int> st, st2;
	for (auto& a : A) {
		cin >> a;
		st.insert(a);
		st2.insert(a);
	}
	sort(A.begin(), A.end());
	vector<int> ans;
	for (int i = 1; i < N; i ++) {
		int a = A[i];
		if (st2.find(a) == st2.end()) continue;
		bool ok = true;
		for (int x = a; x <= M; x += a) {
			if (st.find(x) == st.end()) {
				ok = false;
				break;
			} else if (st2.find(x) != st2.end()) {
				st2.erase(x);
			}
		}
		if (!ok) {
			puts("-1");
			return 0;
		} else {
			ans.push_back(a);
		}
	}
	cout << ans.size() << endl;
	for (int i = 0; i < ans.size(); i ++) {
		cout << ans[i] << (i < ans.size() - 1 ? " " : "");
	}
	cout << endl;
}
0