Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
123230 丁俊杰 计算平均数 Python3 Accepted 43 MS 3780 KB 165 2025-06-28 14:24:05

Tests(10/10):


Code:

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