Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129245 叶倪佳 13求7个数的平均数 Python3 Accepted 56 MS 3756 KB 73 2025-08-23 11:27:13

Tests(10/10):


Code:

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