結果

問題 No.2806 Cornflake Man
ユーザー t98slidert98slider
提出日時 2024-07-19 05:55:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 850 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 206,304 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-19 05:55:55
合計ジャッジ時間 10,552 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
10,752 KB
testcase_01 AC 43 ms
5,376 KB
testcase_02 AC 7 ms
5,376 KB
testcase_03 AC 46 ms
5,376 KB
testcase_04 AC 7 ms
5,376 KB
testcase_05 AC 10 ms
5,376 KB
testcase_06 AC 14 ms
5,376 KB
testcase_07 AC 80 ms
5,376 KB
testcase_08 AC 13 ms
5,376 KB
testcase_09 AC 28 ms
5,376 KB
testcase_10 AC 1,729 ms
5,376 KB
testcase_11 AC 41 ms
5,376 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m;
    cin >> n >> m;
    vector<int> a(n), ans;
    for(auto &&v : a) cin >> v;
    sort(a.begin(), a.end());

    auto f = [&](int v){
        for(auto &&e : ans){
            if(v % e == 0) return false;
        }
        return true;
    };

    for(int i = 1; i < n; i++){
        if(f(a[i])){
            ans.emplace_back(a[i]);
            for(int j = 2 * a[i]; j <= m; j += a[i]){
                if(!binary_search(a.begin(), a.end(), j)){
                    cout << -1 << '\n';
                    return 0;
                }
            }
        }
    }

    cout << ans.size() << '\n';
    for(int i = 0; i < ans.size(); i++){
        cout << ans[i] << (i + 1 == ans.size() ? '\n' : ' ');
    }
}
0