結果

問題 No.2806 Cornflake Man
ユーザー anonymouslyanonymously
提出日時 2024-07-12 22:54:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 776 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 210,672 KB
実行使用メモリ 7,048 KB
最終ジャッジ日時 2024-07-12 22:54:27
合計ジャッジ時間 4,122 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
6,816 KB
testcase_01 WA -
testcase_02 AC 13 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 12 ms
6,940 KB
testcase_05 WA -
testcase_06 AC 32 ms
6,940 KB
testcase_07 WA -
testcase_08 AC 30 ms
6,940 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 103 ms
7,048 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	int n;
	long long m;
	cin >> n >> m;
	vector<long long> A(n);
	for (int i = 0; i < n; i++)
		cin >> A[i];
	sort(A.begin(), A.end());
	vector<bool> B(n, false);
	B[0] = true;
	vector<long long> C;
	for (int i = 1; i < n; i++) {
		if (A[i] * (n - 1) < m) {
			cout << -1 << endl;
			return 0;
		}
		if (!B[i]) {
			if (A[i] * A[i] <= m) {
				long long k = A[i] * 2;
				for (int j = i + 1; j < n; j++) {
					if (A[j] > k) {
						cout << -1 << endl;
						return 0;
					}
					if (A[j] == k) {
						B[j] = true;
						k += A[i];
					}
				}
			}
			C.push_back(A[i]);
		}
	}
	cout << C.size() << endl;
	for (int i = 0; i < C.size(); i++) {
		if (i)
			cout << ' ';
		cout << C[i];
	}
	cout << endl;
	return 0;
}
0