Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91463 徐盛熠 05买水果 Python3 Wrong Answer 34 MS 3756 KB 205 2024-09-21 20:20:40

Tests(0/1):


Code:

a=5 b=8 d=12 a=float(a) b=float(b) d=float(d) s=(a+b+d)/3 s="{:.3f}".format(s) a=int(a) b=int(b) d=int(d) n=39%a e=39%b w=39%d print(s) print(n,39//a) print(e,39//b) print(w,39//d)


Run Info:

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