結果

問題 No.2126 MEX Game
ユーザー mikammikam
提出日時 2022-11-19 16:35:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 669 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 210,968 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-09-20 16:22:52
合計ジャッジ時間 3,684 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 WA -
testcase_06 AC 2 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 72 ms
8,192 KB
testcase_11 AC 66 ms
8,192 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 64 ms
7,680 KB
testcase_16 AC 60 ms
7,424 KB
testcase_17 AC 31 ms
6,944 KB
testcase_18 AC 37 ms
6,940 KB
testcase_19 AC 15 ms
6,944 KB
testcase_20 AC 15 ms
6,940 KB
testcase_21 WA -
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 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