結果

問題 No.2126 MEX Game
ユーザー 👑 rin204rin204
提出日時 2022-11-18 21:32:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 81,712 KB
実行使用メモリ 82,828 KB
最終ジャッジ日時 2023-10-20 06:18:38
合計ジャッジ時間 3,228 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,232 KB
testcase_01 AC 37 ms
54,232 KB
testcase_02 AC 37 ms
54,232 KB
testcase_03 AC 37 ms
54,232 KB
testcase_04 AC 37 ms
54,232 KB
testcase_05 WA -
testcase_06 AC 37 ms
54,232 KB
testcase_07 WA -
testcase_08 AC 37 ms
54,232 KB
testcase_09 AC 37 ms
54,232 KB
testcase_10 AC 62 ms
82,680 KB
testcase_11 AC 62 ms
82,680 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 60 ms
80,528 KB
testcase_16 AC 60 ms
80,476 KB
testcase_17 AC 61 ms
80,196 KB
testcase_18 AC 61 ms
80,320 KB
testcase_19 AC 58 ms
79,456 KB
testcase_20 AC 57 ms
79,456 KB
testcase_21 WA -
testcase_22 AC 38 ms
54,232 KB
testcase_23 AC 38 ms
54,232 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
cnt = [0] * (10 ** 5 + 1)
for a in A:
    cnt[a] += 1

tot = 0
flg = False
for i in range(10 ** 5):
    tot += min(cnt[i], 2)
    if cnt[i] == 0:
        print(i)
        break
    elif cnt[i] == 1:
        if flg:
            print(i)
            break
        if tot == n:
            print(i)
            break
        else:
            print(i + 1)
            flg = True
0