logo AlgoBeat OnlineJudge
登录 注册

#101753. [BZOJ 1753] [Usaco2005 qua]Who's in the Middle

内存限制:64 MiB 时间限制:5000 ms 标准输入输出
题目类型:传统 评测方式:文本比较
上传者: 匿名

题目描述

FJ is surveying his herd to find the most average cow. He wants to know how much milk this 'median' cow gives: half of the cows give as much or more than the median; half give as much or less.

Given an odd number of cows and their milk output, find the median amount of milk given such that at least half the cows give the same amount of milk or more and at least half give the same or less.

输入 个数,输出升序排列后中间那个数。

输入格式

  • Line : A single integer .
  • Lines : Each line contains a single integer that is the milk output of one cow.

输出格式

  • Line : A single integer that is the median milk output.

样例

样例输入 #1

5
2
4
1
3
5

样例输出 #1

3

样例说明

Five cows with milk outputs of .

and are below ; and are above .

数据范围与提示

对于 的数据: 产奶量

Usaco2005 qua