| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 330369 | 李俞家骅 | 【C1-3】矩形的面积与周长 | C++ | Accepted | 100 | 2 MS | 252 KB | 149 | 2025-07-09 20:43:46 |
#include<iostream> using namespace std; int main() { double a,b; cin>>a>>b; cout<<(a+b)*2<<endl; cout<<a*b; return 0; }