Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143454 丁俊杰 13求7个数的平均数 Python3 Accepted 31 MS 3756 KB 84 2026-01-15 13:57:06

Tests(10/10):


Code:

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