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

Tests(0/10):


Code:

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


Run Info:

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