結果

問題 No.2126 MEX Game
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-01-19 09:58:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 525 bytes
コンパイル時間 1,143 ms
コンパイル使用メモリ 107,216 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-09-03 17:47:34
合計ジャッジ時間 2,814 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 WA -
testcase_06 AC 1 ms
4,380 KB
testcase_07 WA -
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 24 ms
4,376 KB
testcase_11 AC 24 ms
4,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 24 ms
4,380 KB
testcase_16 AC 23 ms
4,380 KB
testcase_17 AC 19 ms
4,380 KB
testcase_18 AC 20 ms
4,376 KB
testcase_19 AC 13 ms
4,376 KB
testcase_20 AC 13 ms
4,380 KB
testcase_21 WA -
testcase_22 AC 2 ms
4,380 KB
testcase_23 AC 2 ms
4,380 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;

int main(){

    int N, A, ans=0;
    cin >> N;
    vector<int> cnt(100001);

    for (int i=0; i<N; i++){
        cin >> A;
        cnt[A]++;
    }

    for (int i=0; i<=100000; i++){
        if (cnt[i] >= 2) ans++;
        else break;
    }

    cout << ans << endl;

    return 0;
}
0