結果
問題 |
No.2126 MEX Game
|
ユーザー |
![]() |
提出日時 | 2022-11-26 11:19:31 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 359 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 82,580 KB |
実行使用メモリ | 84,544 KB |
最終ジャッジ日時 | 2024-10-02 14:53:36 |
合計ジャッジ時間 | 3,038 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 20 WA * 7 |
ソースコード
N = int(input()) A = list(map(int, input().split())) A.sort() indl = 0 indr = N M = 10**5 for i in range(M): ct = 0 while indl < indr and A[indl] == i: ct += 1 indl += 1 if ct == 0: print(i) exit() if ct == 1: if indl == indr: print(i) exit() else: indr -= 1