| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 137044 | 王润中 | 03七巧板 | C++ | Wrong Answer | 1 MS | 264 KB | 143 | 2025-11-16 09:50:30 |
#include<iostream> #include<cmath> using namespace std; int main() { int c,f; cin>>c,f; c=c*2; f=f*2; cout<<(c+f)/2; }
------Input------
85.9 8.4
------Answer-----
721.56
------Your output-----
85