-
-
Save noir1458/f11571383625c6ed094c8687d3199850 to your computer and use it in GitHub Desktop.
BOJ 1546.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input_num = input() | |
input_score = list(map(int,input().split())) | |
result_score = [] | |
for k in input_score: | |
result_score += [k/max(input_score)*100] | |
print(sum(result_score)/len(result_score)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment