Dcoder icon

The closest to Average @ Dcoder

By Lochard | As a newbie programmer | 30 Jun 2023


Problem: You are given an array, you have to find the closest integer to its average, look it has to be closest,not just the truncated version of the average.

Input: First line contains n , number of elements of array, next line contains n integer separated by a space, which are elements of the array.

Output: Print output according to given condition.See Sample output.

Constraints: 1≤n≤100

1≤ element of array ≤ 1000 

Sample Input: 2

10 15

Sample Output: 

12

n = int(input())
a = sum(map(int, input().split())) / n
print(int(a) + 1 if a % 1 > 0.5 else int(a))

How do you rate this article?

2


Lochard
Lochard

20240228 Arrived in the UK for about 2 week. All my fears persist. Some are even getting worse. https://github.com/locharp/asylum_diary/


As a newbie programmer
As a newbie programmer

Sharing entry level codes. My snippets on GitHub https://github.com/locharp/code-snippets

Publish0x

Send a $0.01 microtip in crypto to the author, and earn yourself as you read!

20% to author / 80% to me.
We pay the tips from our rewards pool.