Sign in
or
Register
Courses
Textbook
Compiler
Contests
Topics
Courses
算法
二进制搜索
Module:
二进制搜索
Problem
3
/5
最近的数字
Problem
编写一个程序,在数组中查找值最接近给定数字的元素。
输入:
-第一行包含一个自然数
N
,不超过1000 –数组大小;
- 第二行包含
N
个数字 –数组元素(模数不超过1000的整数);
- 第三行包含一个整数
x
,模数不超过1000。
输出:
打印最接近
x
的数组元素的值。如果有多个这样的数字,打印其中的任何一个。
<分区>
例子
<头>
<日>#日>
输入
输出
东西> <正文>
1
5
1 2 3 4 5
6
5
2
5
5 4 3 2 1
3
3
表>
1000
ms
256 Mb
Rules for program design and list of errors in automatic problem checking
Teacher commentary