結果

問題 No.2806 Cornflake Man
ユーザー otoshigootoshigo
提出日時 2024-07-12 22:06:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 986 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 212,380 KB
実行使用メモリ 23,576 KB
最終ジャッジ日時 2024-07-17 20:27:13
合計ジャッジ時間 5,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
8,704 KB
testcase_01 AC 228 ms
18,944 KB
testcase_02 AC 14 ms
5,376 KB
testcase_03 AC 241 ms
19,456 KB
testcase_04 AC 13 ms
5,376 KB
testcase_05 AC 35 ms
7,040 KB
testcase_06 AC 35 ms
6,600 KB
testcase_07 AC 316 ms
21,888 KB
testcase_08 AC 31 ms
6,272 KB
testcase_09 AC 132 ms
13,312 KB
testcase_10 AC 50 ms
8,320 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 66 ms
9,600 KB
testcase_13 AC 161 ms
16,072 KB
testcase_14 AC 24 ms
5,888 KB
testcase_15 AC 227 ms
23,576 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;
using ll=long long;
#define all(v) v.begin(),v.end()
#define rall(v) v.rbegin(),v.rend()
template<class T> bool chmax(T &a, T b){if (a < b){a = b;return true;} else return false;}
template<class T> bool chmin(T &a, T b){if (a > b){a = b;return true;} else return false;}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N,M;
    cin>>N>>M;
    vector<int>A(N);
    set<int>se;
    for(int i=0;i<N;i++){
        cin>>A[i];
        se.insert(A[i]);
    }
    se.erase(0);
    vector<int>ans;
    set<int>se2;
    sort(all(A));
    for(int i=1;i<N;i++){
        int x=A[i];
        if(se2.count(x))continue;
        for(int i=x;i<=M;i+=x){
            if(se.count(i)){
                se2.insert(i);
            }else{
                cout<<-1<<"\n";
                return 0;
            }
        }
        ans.push_back(x);
    }
    cout<<(int)ans.size()<<"\n";
    for(auto x:ans)cout<<x<<" ";
    cout<<"\n";
}
0