比赛 |
20131130 |
评测结果 |
AWAAWWWWWW |
题目名称 |
参加考试 |
最终得分 |
30 |
用户昵称 |
cstdio |
运行时间 |
0.012 s |
代码语言 |
C++ |
内存使用 |
0.31 MiB |
提交时间 |
2013-11-30 17:31:02 |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<algorithm>
#include<map>
#include<cstring>
#include<vector>
#include<cmath>
#include<algorithm>
#include<iomanip>
#include<deque>
using namespace std;
int main(){
freopen("teststr.in","r",stdin);
freopen("teststr.out","w",stdout);
int n,k;
int ans1=0x7fffffff,ans2=0x7fffffff;
scanf("%d%d",&n,&k);
int i,temp;
for(i=1;i<=k;i++){
scanf("%d",&temp);
ans1=min(ans1,temp);
ans2=min(ans2,n-temp);
}
printf("%d\n",max(ans1,ans2));
return 0;
}