OpenJudge - 26:The Nearest Number
总时间限制:
1000ms
内存限制:
65536kB
描述
Given a sequence of N number and K. Find the nearest number X in the sequence that the absolute value of (X minus K) is minimum.
给出N个数和数字K。在这N个数中找到一个数X,使得(X-K)的绝对值最小。
输入
First line: two positive integers N (N <= 100) and K (K <= 100000).
第一行:两个正整数N(N<=100)和K(K<=100000)。
Second line: N positive integers (<= 100000).
第二行:N个小等于100000的正整数。
输出
One integer X.
一个整数X。