Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90470 王晨鑫 04计算平均分 Python3 Accepted 39 MS 3760 KB 113 2024-09-15 10:31:32

Tests(10/10):


Code:

q=input().split() a=q[0] b=q[1] c=q[2] a=int(a) b=int(b) c=int(c) r="{:.2f}".format((a+b+c)/3) print(r)