結果

問題 No.2806 Cornflake Man
ユーザー kinugoshi8928kinugoshi8928
提出日時 2024-06-15 17:47:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 678 bytes
コンパイル時間 2,613 ms
コンパイル使用メモリ 251,020 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 01:35:42
合計ジャッジ時間 4,898 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 12 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 11 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 29 ms
5,376 KB
testcase_07 WA -
testcase_08 AC 27 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 102 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
            }
        }
        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