結果
| 問題 |
No.2126 MEX Game
|
| コンテスト | |
| ユーザー |
とりゐ
|
| 提出日時 | 2022-11-18 21:23:33 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 267 bytes |
| コンパイル時間 | 148 ms |
| コンパイル使用メモリ | 82,048 KB |
| 実行使用メモリ | 81,664 KB |
| 最終ジャッジ日時 | 2024-09-20 01:48:50 |
| 合計ジャッジ時間 | 2,903 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 24 WA * 3 |
ソースコード
m=10**5+10
n=int(input())
a=list(map(int,input().split()))
mx=max(a)
a.remove(mx)
cnt=[0]*m
for i in a:
cnt[i]+=1
use=0
flag=0
for i in range(m):
if cnt[i]==0:
print(i)
exit()
if cnt[i]==1:
if flag:
print(i)
exit()
else:
flag=1
とりゐ