結果

問題 No.2126 MEX Game
ユーザー pitPpitP
提出日時 2022-11-18 22:04:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 189 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 82,724 KB
最終ジャッジ日時 2024-09-20 02:25:31
合計ジャッジ時間 2,555 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,368 KB
testcase_01 AC 36 ms
52,976 KB
testcase_02 AC 36 ms
54,640 KB
testcase_03 AC 37 ms
53,916 KB
testcase_04 AC 36 ms
53,300 KB
testcase_05 WA -
testcase_06 AC 35 ms
53,636 KB
testcase_07 WA -
testcase_08 AC 35 ms
52,464 KB
testcase_09 AC 35 ms
54,388 KB
testcase_10 AC 58 ms
81,956 KB
testcase_11 AC 61 ms
81,964 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 59 ms
80,516 KB
testcase_16 AC 59 ms
80,984 KB
testcase_17 AC 59 ms
79,900 KB
testcase_18 AC 59 ms
81,152 KB
testcase_19 AC 53 ms
78,044 KB
testcase_20 AC 55 ms
79,160 KB
testcase_21 WA -
testcase_22 AC 36 ms
53,856 KB
testcase_23 AC 36 ms
53,312 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(10**5+5):
    if cnt[i] < 2:
        print(i)
        exit()
0