Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
87299 | 展博 | 输出学生成绩 | Python3 | Accepted | 33 MS | 3772 KB | 214 | 2024-08-08 14:28:16 |
g1=list(map(int,input().split())) g2=list(map(int,input().split())) g3=list(map(int,input().split())) n=int(input()) avg=(sum(g1)+sum(g2)+sum(g3))/12 print("{:.2f}".format(avg)) stu=[g1,g2,g3] print(*stu[n])