Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
99007 潘允晨 13求7个数的平均数 Python3 Wrong Answer 37 MS 3752 KB 76 2024-11-24 09:20:41

Tests(0/10):


Code:

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


Run Info:

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