Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91716 徐梓涵 05买水果 Python3 Wrong Answer 33 MS 3756 KB 194 2024-09-22 13:49:46

Tests(0/1):


Code:

a=float(5) c=float(8) b=float(12) v=float(5) a='{:.3f}'.format((a+c+b)/3) n=39/v m=39/c t=39/b j=39-n*5 h=39-m*8 t2=39-t*12 print(a) print(n,' ',j) print(m,' ',h) print(t,' ',t2)


Run Info:

------Input------
0
------Answer-----
8.333 7 4 4 7 3 3
------Your output-----
8.333 7.8 0.0 4.875 0.0 3.25 0.0