結果

問題 No.2806 Cornflake Man
ユーザー Pres1dentPres1dent
提出日時 2024-07-12 22:30:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 301 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 1,881 ms
コンパイル使用メモリ 210,376 KB
実行使用メモリ 23,548 KB
最終ジャッジ日時 2024-07-17 20:27:24
合計ジャッジ時間 4,530 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
8,832 KB
testcase_01 AC 213 ms
18,816 KB
testcase_02 AC 19 ms
5,376 KB
testcase_03 AC 246 ms
19,712 KB
testcase_04 AC 17 ms
5,376 KB
testcase_05 AC 37 ms
7,168 KB
testcase_06 AC 40 ms
6,528 KB
testcase_07 AC 301 ms
22,016 KB
testcase_08 AC 43 ms
6,352 KB
testcase_09 AC 114 ms
13,184 KB
testcase_10 AC 53 ms
8,320 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 69 ms
9,472 KB
testcase_13 AC 148 ms
16,180 KB
testcase_14 AC 27 ms
5,888 KB
testcase_15 AC 253 ms
23,548 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 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;
int main() {
  int n, m; cin >> n >> m;
  vector<int> a(n);
  for (int i = 0; i < n; i++) cin >> a[i];
  vector<int> ans;
  set<int> st(a.begin() + 1, a.end()), played;
  for (auto e : st) {
    if (played.count(e)) continue;
    ans.push_back(e);
    for (int i = 1; e * i <= m; i++) {
      if (not st.count(e * i)) {
        cout << -1 << endl;
        return 0;
      }
      played.insert(e * i);
    }
  }
  cout << ans.size() << endl;
  for (int i = 0; i < ans.size(); i++) {
    cout << ans[i] << (i + 1 == ans.size() ? "\n" : " ");
  }
}
0