Gửi bài giải
Điểm:
1,00 (OI)
Giới hạn thời gian:
1.0s
Giới hạn bộ nhớ:
256M
Input:
stdin
Output:
stdout
Nguồn bài:
Dạng bài
Ngôn ngữ cho phép
C, C++, Java, Kotlin, Pascal, PyPy, Python, Scratch
Given an array of ~n~ integers. Find the median of the array.
Input
The first line is an integer ~n~ (~n~ ≤ ~10^{6}~).
The second line is an integer ~n~ where absolute value of each number is not more than ~10^{9}~.
Output
- The median of array
Sample Input:
5
7 8 3 1 4
Sample Output:
4
Sample Input:
6
7 8 3 1 4 5
Sample Output:
4.5
Bình luận