记录编号 |
83186 |
评测结果 |
AWAAWWWWWW |
题目名称 |
[USACO Mar]参加考试 |
最终得分 |
30 |
用户昵称 |
超级傲娇的AC酱 |
是否通过 |
未通过 |
代码语言 |
C++ |
运行时间 |
0.531 s |
提交时间 |
2013-11-30 20:41:48 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<cstdio>
#include<algorithm>
#include<cstdlib>
#include<vector>
#include<cmath>
using namespace std;
vector<int>A,B;
int main()
{
freopen("teststr.in","r",stdin);
freopen("teststr.out","w",stdout);
int n,x,i,Ans;
scanf("%d\n",&n);
for(i=0;i<n;i++)
{
scanf("%d\n",&x);
A.push_back(x);
B.push_back(n-x);
}
Ans=*min_element(A.begin(),A.end());
Ans=max(Ans,*min_element(B.begin(),B.end()));
printf("%d ",Ans);
}