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

Tests(10/10):


Code:

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