| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 123229 | 丁俊杰 | 计算平均数 | Python3 | Wrong Answer | 34 MS | 3768 KB | 149 | 2025-06-28 14:23:21 |
a=list(map(int,input().split())) res=0 for i in a: res+=i print("{:.2f}".format(res)) for i in a: if i>a: print(i,end=" ")
------Input------
679 849 98 256 256
------Answer-----
427.60 679 849
------Your output-----
2138.00