比赛 |
20131130 |
评测结果 |
AWWWWWWWWW |
题目名称 |
参加考试 |
最终得分 |
10 |
用户昵称 |
Chenyao2333 |
运行时间 |
0.004 s |
代码语言 |
C++ |
内存使用 |
0.67 MiB |
提交时间 |
2013-11-30 16:22:12 |
显示代码纯文本
#include<stdio.h>
int n,k;
int a[100000+10];
void open(){
freopen("teststr.in","r",stdin);
freopen("teststr.out","w",stdout);
}
void read(){
scanf("%d %d",&n,&k);
for(int i=1;i<=k;i++){
scanf("%d",&a[i]);
}
}
int solve(){
int ans_true=n;
int ans_false=n;
for(int i=1;i<=k;i++)if(a[i]<ans_true)ans_true=a[i];
for(int i=1;i<=k;i++)if((n-a[i])<ans_false)ans_false=a[i];
return ans_true>ans_false? ans_true:ans_false;
}
int main(){
open();
read();
int ans=solve();
printf("%d",ans);
return 0;
}