結果

問題 No.2806 Cornflake Man
ユーザー ja14378ja14378
提出日時 2024-07-12 21:54:13
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 1,102 bytes
コンパイル時間 2,345 ms
コンパイル使用メモリ 218,480 KB
実行使用メモリ 23,572 KB
最終ジャッジ日時 2024-07-17 20:26:33
合計ジャッジ時間 5,069 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
8,832 KB
testcase_01 AC 243 ms
18,944 KB
testcase_02 AC 15 ms
5,376 KB
testcase_03 AC 255 ms
19,584 KB
testcase_04 AC 12 ms
5,376 KB
testcase_05 AC 37 ms
7,040 KB
testcase_06 AC 34 ms
6,528 KB
testcase_07 AC 338 ms
22,016 KB
testcase_08 AC 31 ms
6,380 KB
testcase_09 AC 138 ms
13,184 KB
testcase_10 AC 48 ms
8,448 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 62 ms
9,600 KB
testcase_13 AC 140 ms
16,080 KB
testcase_14 AC 23 ms
6,016 KB
testcase_15 AC 188 ms
23,572 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>
//#include <atcoder/all>
using ll = long long;
#define MOD 1000000007
#define Mod 998244353
const int MAX = 1000000005;
const long long INF = 1000000000000000005LL;
using namespace std;
//using namespace atcoder;
#define MOD 1000000007



int main() {
    ios::sync_with_stdio(0); cin.tie();
    int N, M;
    cin >> N >> M;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];
    set<int> se;
    for (int i = 0; i < N; i++) se.insert(A[i]);
    sort(A.begin(), A.end());
    map<int, int> mp;
    vector<int> ans;
    for (int i = 1; i < N; i++) {
        if (mp.count(A[i])) continue;
        mp[A[i]] = 1;
        ans.push_back(A[i]);
        for (int j = 2*A[i]; j <= M; j += A[i]) {
            if (!se.count(j)) {
                cout << -1 << endl;
                return 0;
            }
            if (mp.count(j)) continue;
            mp[j] = 1;
        }
    }
    sort(ans.begin(), ans.end());
    cout << ans.size() << endl;
    for (int i = 0; i < (int)ans.size(); i++) {
        cout << ans[i] << (i+1 == (int)ans.size() ? "\n" : " ");
    }
}
0