結果

問題 No.2806 Cornflake Man
ユーザー Akshaj PadmakarAkshaj Padmakar
提出日時 2024-07-12 23:28:13
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,371 bytes
コンパイル時間 1,829 ms
コンパイル使用メモリ 174,816 KB
実行使用メモリ 18,112 KB
最終ジャッジ日時 2024-07-12 23:28:22
合計ジャッジ時間 8,504 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#ifndef ONLINE_JUDGE
#include "algo/debug.h"
#define debug(x...) cerr << "[" << #x << "] = ["; _print(x)
#else
#define debug(x...)
#endif

#define int long long
vector<int> printNonDivisibleElements(const vector<int>& arr) {
	int n = arr.size();
	vector<int> result;
	for (int i = 0; i < n; ++i) {
		bool isDivisible = false;

		for (int j = 0; j < result.size(); ++j) {
			if (arr[i] % result[j] == 0) {
				isDivisible = true;
				break;
			}
		}

		if (!isDivisible) {
			result.push_back(arr[i]);
		}
	}
	return result;
}

void solve() {
	int n, m;

	cin >> n >> m;
	vector<int> a(n);
	for (auto &x : a) {
		cin >> x;
	}

	sort(a.begin(), a.end());
	reverse(a.begin(), a.end());
	a.pop_back();
	reverse(a.begin(), a.end());


	auto p = printNonDivisibleElements(a);


	for (auto &x : p) {
		int c = 0;
		for (int j = 0; j < a.size(); j++) {
			c += (a[j] % x == 0);
		}
		if (c != (m / x)) {
			cout << -1 << '\n'; return;
		}
	}
	cout << p.size() << "\n";
	for (auto &x : p) {
		cout << x << " ";
	}
}

signed main() {
#ifndef ONLINE_JUDGE
	freopen("input.txt", "r", stdin);
	freopen("output.txt", "w", stdout);
#else
#endif
	ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);

	int t = 1;
	//cin >> t;

	while (t--) {
		solve();
	}

	// cerr << "Time elapsed: " << ((long double)clock() / CLOCKS_PER_SEC) << " s.\n";
}
0