Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
91449 徐盛熠 01梯形的面积 Python3 Wrong Answer 32 MS 3744 KB 97 2024-09-21 19:35:19

Tests(0/1):


Code:

n=input().split() a=n[0] b=n[1] d=n[2] a=int(a) b=int(b) d=int(d) c=(a+b)*d//2 print(c)


Run Info:

------Input------
0
------Answer-----
120
------Your output-----