結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
13,884 KB
testcase_01 AC 239 ms
6,940 KB
testcase_02 AC 13 ms
6,940 KB
testcase_03 AC 256 ms
6,944 KB
testcase_04 AC 13 ms
6,940 KB
testcase_05 AC 50 ms
6,944 KB
testcase_06 AC 32 ms
6,944 KB
testcase_07 AC 314 ms
6,944 KB
testcase_08 AC 30 ms
6,944 KB
testcase_09 AC 152 ms
6,940 KB
testcase_10 AC 939 ms
6,940 KB
testcase_11 AC 17 ms
6,940 KB
testcase_12 AC 1,636 ms
6,944 KB
testcase_13 TLE -
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>(A[i]/2)) break;
            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