Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
125992 | 陈淮遇 | 05求长方形的周长和面积 | C++ | Wrong Answer | 0 MS | 272 KB | 155 | 2025-07-15 17:04:55 |
#include<bits/stdc++.h> using namespace std; int main() { int a; int b; cin>>a>>b; int c=a*2+b*2; int d=a*3; cout <<c<<" "<<d; return 0; }
------Input------
44 56
------Answer-----
200 2464
------Your output-----
200 132