Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129247 王均歌 13求7个数的平均数 Python3 Accepted 58 MS 3764 KB 76 2025-08-23 11:28:31

Tests(10/10):


Code:

a=input().split() res=0 for num in a: res += int (num) print(res//7)