結果

問題 No.2126 MEX Game
ユーザー ああいいああいい
提出日時 2022-11-29 13:25:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 84,152 KB
最終ジャッジ日時 2024-10-07 00:22:33
合計ジャッジ時間 3,078 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,568 KB
testcase_01 AC 37 ms
53,524 KB
testcase_02 AC 37 ms
52,364 KB
testcase_03 AC 37 ms
53,880 KB
testcase_04 AC 37 ms
52,412 KB
testcase_05 WA -
testcase_06 AC 36 ms
52,960 KB
testcase_07 WA -
testcase_08 AC 37 ms
52,280 KB
testcase_09 AC 37 ms
52,748 KB
testcase_10 AC 80 ms
84,152 KB
testcase_11 AC 80 ms
82,432 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 74 ms
80,000 KB
testcase_16 AC 74 ms
79,488 KB
testcase_17 AC 75 ms
81,408 KB
testcase_18 AC 77 ms
81,536 KB
testcase_19 AC 57 ms
78,464 KB
testcase_20 AC 55 ms
76,288 KB
testcase_21 WA -
testcase_22 AC 37 ms
51,840 KB
testcase_23 AC 36 ms
51,840 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()))

A.sort(reverse = True)
ans = 0
import sys
while A:
    if A[-1] != ans:
        print(ans)
        exit()
    if len(A) <= 1:
        print(ans)
        exit()
    if A[-2] != ans:
        print(ans)
        exit()
    while A and A[-1] == ans:
        A.pop()
    ans += 1
    
print(ans)
0