結果

問題 No.2126 MEX Game
ユーザー mikammikam
提出日時 2022-11-19 16:35:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 212,256 KB
実行使用メモリ 8,348 KB
最終ジャッジ日時 2023-10-20 20:42:01
合計ジャッジ時間 4,716 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 WA -
testcase_06 AC 2 ms
4,348 KB
testcase_07 WA -
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 76 ms
8,296 KB
testcase_11 AC 77 ms
8,296 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 74 ms
7,820 KB
testcase_16 AC 69 ms
7,744 KB
testcase_17 AC 33 ms
4,348 KB
testcase_18 AC 38 ms
4,348 KB
testcase_19 AC 16 ms
4,348 KB
testcase_20 AC 16 ms
4,348 KB
testcase_21 WA -
testcase_22 AC 2 ms
4,348 KB
testcase_23 AC 2 ms
4,348 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
using vi = vector<int>;
template<typename T1,typename T2> bool chmax(T1 &a, const T2 b) {if (a < b) {a = b; return true;} else return false; }
template<typename T1,typename T2> bool chmin(T1 &a, const T2 b) {if (a > b) {a = b; return true;} else return false; }

signed main() {

    int n;cin>>n;
    map<int,int> mp;
    rep(i,n){
        int a;cin>>a;
        mp[a]++;
    }
    set<int> st;
    for(auto &e:mp){
        e.second/=2;
        if(e.second!=0)st.insert(e.first);
    }
    int ans = 0;
    while(st.count(ans))ans++;
    cout<<ans<<endl;
    return 0;
}
0