#9879. Forbidden List
Forbidden List
题目描述
Given are an integer and an integer sequence of length : .
Among the integers not contained in the sequence (not necessarily positive), find the integer nearest to , that is, find the integer whose absolute difference with is the minimum. If there are multiple such integers, report the smallest such integer.
给出一个整数 和一个长度为 的整数序列: .
在序列 中不包含的整数(不一定是正数)中,找出最接近 的整数,即找出与 的绝对差最小的整数。如果有多个这样的整数,请报告最小的整数。
输入格式
输入内容按以下格式标准输入:
输出格式
打印答案。
样例 #1
样例输入 #1
6 5
4 7 10 6 5
样例输出 #1
8
样例 #2
样例输入 #2
10 5
4 7 10 6 5
样例输出 #2
9
样例 #3
样例输入 #3
100 0
样例输出 #3
100
说明
数据规模与约定
- 都是不同的。
- 输入的所有值都是整数。
样例 解释
在不包含在序列 中的整数中,最接近 的是 。
样例 解释
在不包含在序列 中的整数中,最接近 的是 和 。我们应该打印较小的 。
样例 解释
当 出现时,输入的第二行将为空。此外,如图所示, 本身也可以是答案。