Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
129210 | 曹云翊 | 13求7个数的平均数 | Python3 | Accepted | 53 MS | 3776 KB | 149 | 2025-08-22 19:47:02 |
a,b,c,d,e,f,g = input().split() a = int(a) b = int(b) c = int(c) d = int(d) e = int(e) f = int(f) g = int(g) z = (a+b+c+d+e+f+g)//7 print(z)