Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
93975 汤弘毅 02计算(a+b)/c C Wrong Answer 0 MS 208 KB 132 2024-10-19 16:47:20

Tests(0/10):


Code:

# include <stdio.h> /* */ int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); int res = (a+b)/3; printf("%d",res); }


Run Info:

------Input------
1901 131 1062
------Answer-----
1
------Your output-----
677