Skip to content

Instantly share code, notes, and snippets.

@noir1458
Created February 10, 2024 16:11
Show Gist options
  • Save noir1458/f11571383625c6ed094c8687d3199850 to your computer and use it in GitHub Desktop.
Save noir1458/f11571383625c6ed094c8687d3199850 to your computer and use it in GitHub Desktop.
BOJ 1546.py
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