結果
問題 | No.2806 Cornflake Man |
ユーザー | Rubikun |
提出日時 | 2024-07-12 21:17:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 396 ms / 2,000 ms |
コード長 | 1,158 bytes |
コンパイル時間 | 2,194 ms |
コンパイル使用メモリ | 209,844 KB |
実行使用メモリ | 24,232 KB |
最終ジャッジ日時 | 2024-07-17 20:25:28 |
合計ジャッジ時間 | 5,387 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 116 ms
13,696 KB |
testcase_01 | AC | 243 ms
18,560 KB |
testcase_02 | AC | 19 ms
6,016 KB |
testcase_03 | AC | 285 ms
19,200 KB |
testcase_04 | AC | 15 ms
5,504 KB |
testcase_05 | AC | 31 ms
6,944 KB |
testcase_06 | AC | 56 ms
9,600 KB |
testcase_07 | AC | 396 ms
21,376 KB |
testcase_08 | AC | 47 ms
8,960 KB |
testcase_09 | AC | 144 ms
13,056 KB |
testcase_10 | AC | 56 ms
8,704 KB |
testcase_11 | AC | 6 ms
5,376 KB |
testcase_12 | AC | 71 ms
9,856 KB |
testcase_13 | AC | 210 ms
16,452 KB |
testcase_14 | AC | 25 ms
6,092 KB |
testcase_15 | AC | 241 ms
24,232 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; template<class T>bool chmax(T &a, const T &b) { if (a<b) { a=b; return true; } return false; } template<class T>bool chmin(T &a, const T &b) { if (b<a) { a=b; return true; } return false; } #define all(x) (x).begin(),(x).end() #define fi first #define se second #define mp make_pair #define si(x) int(x.size()) const int mod=998244353,MAX=300005,INF=15<<26; int main(){ std::ifstream in("text.txt"); std::cin.rdbuf(in.rdbuf()); cin.tie(0); ios::sync_with_stdio(false); ll N,M;cin>>N>>M; set<ll> SE,T; for(int i=0;i<N;i++){ ll x;cin>>x; SE.insert(x); T.insert(x); } if(!SE.count(0)){ cout<<-1<<endl; return 0; } SE.erase(0); vector<ll> ans; while(si(SE)){ ll x=*SE.begin(); ans.push_back(x); for(ll z=x;z<=M;z+=x){ if(!T.count(z)){ cout<<-1<<endl; return 0; } if(SE.count(z)) SE.erase(z); } } cout<<si(ans)<<endl; for(ll x:ans) cout<<x<<" "; cout<<endl; }