Submission #62504237
Source Code Expand
#include <bits/stdc++.h> using namespace std; #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace __gnu_pbds; template<class T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; #define all(x) x.begin(),x.end() #define allr(x) x.rbegin(),x.rend() #define endl '\n' typedef long long ll; typedef long double ld; #define ull unsigned long long #define YES cout<<"YES\n" #define NO cout<<"NO\n" #define L cout<<'\n' #define sz(t) int(t.size()) #define RTV(t) return void(cout<<t<<endl) void file() { #ifndef ONLINE_JUDGE freopen("in.txt", "r", stdin); freopen("out.txt", "w", stdout); #endif } long long gcd(unsigned long long a, unsigned long long b) { return a ? gcd(b % a, a) : b; } long long lcm(unsigned long long a, unsigned long long b) { return a / gcd(a, b) * b; } void PRO() { ios::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr); } void solve() { int k,n; cin>>k>>n; vector<int>mp(1005); for(int i=0;i<n;i++){ int x; cin>>x; mp[x] = 1; } vector<int>ans; for(int i=1;i<=k;i++){ if(!mp[i])ans.push_back(i); } cout<<sz(ans)<<endl; for(auto&it : ans)cout<<it<<' ';L; } int32_t main() { file(); PRO(); int t = 1; //freopen("crypto.in", "r", stdin); //cin >> t; //clock_t en;en = clock(); for (int i = 1; i <= t; i++) { //cout<<"Case #"<<i<<": "; solve(); } //cout<<(ld)(clock()-en)/CLOCKS_PER_SEC<<endl; return 0; }
Submission Info
Submission Time | |
---|---|
Task | B - Who is Missing? |
User | Kareem_Hatem |
Language | C++ 20 (Clang 16.0.6) |
Score | 200 |
Code Size | 1649 Byte |
Status | AC |
Exec Time | 1 ms |
Memory | 3596 KiB |
Judge Result
Set Name | Sample | All | ||||
---|---|---|---|---|---|---|
Score / Max Score | 0 / 0 | 200 / 200 | ||||
Status |
|
|
Set Name | Test Cases |
---|---|
Sample | sample_01.txt, sample_02.txt, sample_03.txt |
All | sample_01.txt, sample_02.txt, sample_03.txt, test_01.txt, test_02.txt, test_03.txt, test_04.txt, test_05.txt, test_06.txt, test_07.txt, test_08.txt, test_09.txt, test_10.txt, test_11.txt, test_12.txt, test_13.txt, test_14.txt, test_15.txt, test_16.txt, test_17.txt, test_18.txt, test_19.txt, test_20.txt, test_21.txt, test_22.txt, test_23.txt, test_24.txt, test_25.txt, test_26.txt, test_27.txt, test_28.txt, test_29.txt, test_30.txt, test_31.txt, test_32.txt, test_33.txt, test_34.txt, test_35.txt, test_36.txt, test_37.txt, test_38.txt, test_39.txt, test_40.txt |
Case Name | Status | Exec Time | Memory |
---|---|---|---|
sample_01.txt | AC | 1 ms | 3432 KiB |
sample_02.txt | AC | 1 ms | 3460 KiB |
sample_03.txt | AC | 1 ms | 3528 KiB |
test_01.txt | AC | 1 ms | 3588 KiB |
test_02.txt | AC | 1 ms | 3460 KiB |
test_03.txt | AC | 1 ms | 3500 KiB |
test_04.txt | AC | 1 ms | 3528 KiB |
test_05.txt | AC | 1 ms | 3396 KiB |
test_06.txt | AC | 1 ms | 3412 KiB |
test_07.txt | AC | 1 ms | 3408 KiB |
test_08.txt | AC | 1 ms | 3408 KiB |
test_09.txt | AC | 1 ms | 3504 KiB |
test_10.txt | AC | 1 ms | 3344 KiB |
test_11.txt | AC | 1 ms | 3592 KiB |
test_12.txt | AC | 1 ms | 3472 KiB |
test_13.txt | AC | 1 ms | 3596 KiB |
test_14.txt | AC | 1 ms | 3436 KiB |
test_15.txt | AC | 1 ms | 3436 KiB |
test_16.txt | AC | 1 ms | 3436 KiB |
test_17.txt | AC | 1 ms | 3476 KiB |
test_18.txt | AC | 1 ms | 3504 KiB |
test_19.txt | AC | 1 ms | 3440 KiB |
test_20.txt | AC | 1 ms | 3476 KiB |
test_21.txt | AC | 1 ms | 3468 KiB |
test_22.txt | AC | 1 ms | 3480 KiB |
test_23.txt | AC | 1 ms | 3528 KiB |
test_24.txt | AC | 1 ms | 3468 KiB |
test_25.txt | AC | 1 ms | 3512 KiB |
test_26.txt | AC | 1 ms | 3344 KiB |
test_27.txt | AC | 1 ms | 3436 KiB |
test_28.txt | AC | 1 ms | 3460 KiB |
test_29.txt | AC | 1 ms | 3472 KiB |
test_30.txt | AC | 1 ms | 3440 KiB |
test_31.txt | AC | 1 ms | 3340 KiB |
test_32.txt | AC | 1 ms | 3512 KiB |
test_33.txt | AC | 1 ms | 3436 KiB |
test_34.txt | AC | 1 ms | 3476 KiB |
test_35.txt | AC | 1 ms | 3472 KiB |
test_36.txt | AC | 1 ms | 3484 KiB |
test_37.txt | AC | 1 ms | 3540 KiB |
test_38.txt | AC | 1 ms | 3448 KiB |
test_39.txt | AC | 1 ms | 3440 KiB |
test_40.txt | AC | 1 ms | 3480 KiB |