結果

問題 No.2806 Cornflake Man
ユーザー tobbietobbie
提出日時 2024-08-01 21:09:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,430 ms / 2,000 ms
コード長 713 bytes
コンパイル時間 1,896 ms
コンパイル使用メモリ 176,900 KB
実行使用メモリ 70,656 KB
最終ジャッジ日時 2024-09-26 15:24:06
合計ジャッジ時間 10,338 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,430 ms
66,816 KB
testcase_01 AC 216 ms
11,008 KB
testcase_02 AC 307 ms
25,088 KB
testcase_03 AC 222 ms
11,264 KB
testcase_04 AC 182 ms
16,256 KB
testcase_05 AC 34 ms
5,376 KB
testcase_06 AC 1,057 ms
70,656 KB
testcase_07 AC 264 ms
12,544 KB
testcase_08 AC 639 ms
39,552 KB
testcase_09 AC 110 ms
8,320 KB
testcase_10 AC 60 ms
6,044 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 74 ms
6,620 KB
testcase_13 AC 174 ms
9,856 KB
testcase_14 AC 28 ms
5,376 KB
testcase_15 AC 236 ms
13,800 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 rep(i, n) for (int i = 0; i < (int)n; i++)

int main() {
  int n, m;
  cin >> n >> m;
  map<int, int> mp;
  rep(i, n) {
    int a;
    cin >> a;
    mp[a]++;
  }
  vector<int> b;
  bool ans = true;
  for (map<int, int>::iterator it = mp.begin(); it != mp.end(); it++) {
    int key = it->first;
    if (key == 0)
      continue;
    if (mp[key] == 1) {
      b.push_back(key);
      for (int i = 1; i * key <= m; i++) {
	if (mp[i * key] == 0)
	  ans = false;
	else
	  mp[i * key]++;
      }
    }
  }
  if (ans) {
    cout << (int)b.size() << endl;
    for (int i : b)
      cout << i << " ";
    cout << endl;
  } else
    cout << -1 << endl;
  return 0;
}
0