| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 75880 | sh25_shenpy | 长方形的面积和周长 | C++ | Accepted | 0 MS | 240 KB | 132 | 2025-12-10 21:57:33 |
#include<iostream> using namespace std; int main(){ int s,m; s=10*5; m=2*(10+5); cout<<s<<" "<<m; return 0;}