码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ 1753 Who's in the Middle

时间:2016-05-08 13:47:40      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

排序一下。

#include<iostream>
#include<cstdio>
#include<algorithm>
#define maxn 10050
using namespace std;
int n,a[maxn];
int main()
{
    scanf("%d",&n);
    for (int i=1;i<=n;i++)
        scanf("%d",&a[i]);
    sort(a+1,a+n+1);
    printf("%d\n",a[(n+1)>>1]);
    return 0;
}

 

BZOJ 1753 Who's in the Middle

标签:

原文地址:http://www.cnblogs.com/ziliuziliu/p/5470365.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!