Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
2152 | 彭睿祺 | 02长方形的面积 | C++ | Wrong Answer | 0 MS | 268 KB | 155 | 2023-12-16 15:35:35 |
#include<iostream> using namespace std; int main(){ int a=0; int b=0; cin>>a>>b; cout<<(a+b)*2<<endl; return 0; }
------Input------
329 105
------Answer-----
34545
------Your output-----
868