結果
問題 | No.2806 Cornflake Man |
ユーザー | highlighter |
提出日時 | 2024-06-16 10:12:12 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 765 bytes |
コンパイル時間 | 2,981 ms |
コンパイル使用メモリ | 250,252 KB |
実行使用メモリ | 17,984 KB |
最終ジャッジ日時 | 2024-07-04 01:35:46 |
合計ジャッジ時間 | 9,443 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; // TLEするコード int main() { int N, M; scanf("%d",&N,&M); int A[N]; for(int i = 0; i < N; i++) scanf("%d",&A[i]); sort(A,A+N); vector<int> B; for(int i = 1; i < N; i++) { for(int j = A[i]; j <= M; j += A[i]) { if(!binary_search(A, A+N, j)) { printf("-1\n"); return 0; } } bool ret = true; for(int j=0;j<(int)(B.size());j++){ if(B[j]>(A[i]/2)) break; if(A[i]%B[j]==0){ ret=false; } } if(ret) B.emplace_back(A[i]); } printf("%d\n",(int)(B.size())); for(int i = 0; i < (int)B.size(); i++) { printf("%d ",B[i]); } printf("\n"); }