Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
99010 胡皓宇 13求7个数的平均数 Python3 Wrong Answer 39 MS 3752 KB 65 2024-11-24 09:22:52

Tests(0/10):


Code:

a = list(map(int,input().split())) i = sum(a)/7 print(round(i))


Run Info:

------Input------
64 70 75 65 23 100 7
------Answer-----
57
------Your output-----
58