結果

問題 No.2806 Cornflake Man
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-10-20 23:08:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 2,414 ms
コンパイル使用メモリ 210,820 KB
実行使用メモリ 22,272 KB
最終ジャッジ日時 2024-10-20 23:08:50
合計ジャッジ時間 5,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
13,696 KB
testcase_01 AC 187 ms
18,432 KB
testcase_02 AC 15 ms
6,940 KB
testcase_03 AC 173 ms
19,072 KB
testcase_04 AC 13 ms
6,940 KB
testcase_05 AC 26 ms
6,940 KB
testcase_06 AC 36 ms
9,472 KB
testcase_07 AC 227 ms
21,504 KB
testcase_08 AC 34 ms
8,960 KB
testcase_09 AC 90 ms
12,928 KB
testcase_10 AC 42 ms
8,464 KB
testcase_11 AC 6 ms
6,944 KB
testcase_12 AC 57 ms
9,480 KB
testcase_13 AC 138 ms
15,744 KB
testcase_14 AC 20 ms
6,944 KB
testcase_15 AC 164 ms
22,272 KB
testcase_16 AC 2 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    int N, M, A, x;
    cin >> N >> M >> A;
    set<int> st, st2;
    vector<int> v;
    for (int i=0; i<N-1; i++){
        cin >> A;
        st.insert(A);
    }
    st2 = st;

    while(!st.empty()){
        x = *st.begin();
        for (int i=x; i<=M; i+=x){
            if (!st2.count(i)){
                cout << -1 << endl;
                return 0;
            }
            st.erase(i);
        }
        v.push_back(x);
    }

    cout << v.size() << endl;
    for (auto x : v) cout << x << " ";
    cout << endl;

    return 0;
}
0