| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 320258 | 董峻昊 | 【C1-3】矩形的面积与周长 | C++ | Accepted | 100 | 1 MS | 252 KB | 141 | 2025-05-03 20:26:56 |
#include <bits/stdc++.h> using namespace std; int main(){ double a,b; cin>>a>>b; cout<<(a+b)*2<<endl; cout<<a*b; return 0; }