結果

問題 No.2806 Cornflake Man
ユーザー kinugoshi8928kinugoshi8928
提出日時 2024-06-16 01:27:59
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 806 bytes
コンパイル時間 2,766 ms
コンパイル使用メモリ 252,604 KB
実行使用メモリ 13,760 KB
最終ジャッジ日時 2024-07-04 01:35:42
合計ジャッジ時間 7,904 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
13,760 KB
testcase_01 AC 240 ms
6,940 KB
testcase_02 AC 13 ms
6,944 KB
testcase_03 AC 248 ms
6,940 KB
testcase_04 AC 12 ms
6,940 KB
testcase_05 AC 47 ms
6,940 KB
testcase_06 AC 30 ms
6,940 KB
testcase_07 AC 309 ms
6,944 KB
testcase_08 AC 29 ms
6,940 KB
testcase_09 AC 154 ms
6,940 KB
testcase_10 TLE -
testcase_11 AC 63 ms
6,944 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

// TLEするコード
int main() {
    int N, M;
    cin >> N >> M;
    vector<int> A(N);
    for(int i = 0; i < N; i++)
        cin >> A[i];
    sort(A.begin(), A.end());
    vector<int> B;
    for(int i = 1; i < N; i++) {
        for(int j = A[i]; j <= M; j += A[i]) {
            if(!binary_search(A.begin(), A.end(), j)) {
                cout << -1 << endl;
                return 0;
            }
        }
        bool ret = true;
        for(auto a : B)
            if(A[i] % a == 0)
                ret = false;
        if(ret)
            B.emplace_back(A[i]);
    }
    cout << B.size() << endl;
    for(int i = 0; i < (int)B.size(); i++) {
        cout << B[i];
        if(i != (int)B.size() - 1)
            cout << ' ';
    }
    cout << endl;
}
0