Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
90445 谭景年 05买水果 Python3 Wrong Answer 36 MS 3756 KB 154 2024-09-14 20:22:18

Tests(0/1):


Code:

s=input().split() b=float(s[1]) a=float(s[0]) c=float(s[2]) print('{:.3f}'.format((a+b+c)/3)) print(39//a,39%a) print(39//b,39%b) print(39//c,39%c)


Run Info:

------Input------
0
------Answer-----
8.333 7 4 4 7 3 3
------Your output-----