結果

問題 No.2806 Cornflake Man
ユーザー kinugoshi8928kinugoshi8928
提出日時 2024-06-15 17:46:41
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 812 bytes
コンパイル時間 2,965 ms
コンパイル使用メモリ 250,528 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-04 01:35:37
合計ジャッジ時間 4,024 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

// ソートし忘れてるWA解
int main() {
    int N, M;
    cin >> N >> M;
    vector<int> A(N);
    for(int i = 0; i < N; i++)
        cin >> A[i];
    vector<int> B;
    vector<bool> verified(N);
    for(int i = 1; i < N; i++) {
        if(verified[i])
            continue;
        for(int j = A[i]; j <= M; j += A[i]) {
            if(!binary_search(A.begin(), A.end(), j)) {
                cout << -1 << endl;
                return 0;
            }
            verified[lower_bound(A.begin(), A.end(), j) - A.begin()] = true;
        }
        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