結果
問題 | No.2806 Cornflake Man |
ユーザー | kinugoshi8928 |
提出日時 | 2024-06-16 23:49:54 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 966 bytes |
コンパイル時間 | 3,804 ms |
コンパイル使用メモリ | 268,108 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-04 01:36:00 |
合計ジャッジ時間 | 7,187 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
ソースコード
#pragma GCC target "arch=icelake-server,prefer-vector-width=512" #pragma GCC optimize "Ofast" #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; }