eolymp
bolt
Try our new interface for solving problems
Problems

Arithmetic mean for figure skaters

Arithmetic mean for figure skaters

$n$ judges give grades for figure skaters. Technical worker of competition removes all maximum and all minimum grades and calculates the arithmetic mean of the grades left. This result is considered to be the number of points earned by athlete. Find the number of points earned by each athlete. \InputFile The first line contains two numbers: the number of judges $n~(0 < n \le 10)$ and the number of sportsmen $m~(0 < m \le 100)$. Each of the next $m$ lines contains $n$ integers --- the grades of all judges for each figure skater. \OutputFile Print in one line $m$ numbers with two decimal digits --- the number of points earned by each sportsman.
Time limit 1 second
Memory limit 128 MiB
Input example #1
5 4
7 8 9 8 10
6 5 5 4 7 
9 9 10 7 7
7 7 10 9 8
Output example #1
8.33 5.33 9.00 8.50

Example description: Last test case: minimum = 7, maximum = 10, remove all 7 and all 10. Grades left: 9 8. The arithmetic mean of the grades left is (9 + 8 ) / 2 = 8.50

Author sveta_p
Source ІІ этап Всеукраинськой олимпиады по информатике