Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
143578 丁俊杰 计算平均数 Python3 Accepted 30 MS 3772 KB 140 2026-01-17 10:10:25

Tests(10/10):


Code:

a=list(map(int,input().split())) res=sum(a) ave=res/5 print("{:.2f}".format(ave)) for i in a: if i>ave: print(i,end=" ")