結果
| 問題 | No.2126 MEX Game |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-11-18 22:26:03 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 472 bytes |
| 記録 | |
| コンパイル時間 | 326 ms |
| コンパイル使用メモリ | 20,628 KB |
| 実行使用メモリ | 29,024 KB |
| 最終ジャッジ日時 | 2026-04-08 15:07:44 |
| 合計ジャッジ時間 | 4,777 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 WA * 2 |
ソースコード
from collections import Counter
n = int(input())
A = list(map(int, input().split()))
counter = Counter(A)
add = 0
for i in range(10**5 + 1):
if counter[i] >= 2:
if counter[i] >= 3:
add = 1
continue
if counter[i] == 1:
if add == 0:
for j in range(i + 1, 10**5 + 1):
if counter[j] > 0:
add = 1
break
print(i + add)
break
print(i)
break