| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 80187 | sh25_wangtaojie | 比大小 | C++ | Accepted | 0 MS | 236 KB | 254 | 2026-01-04 15:06:16 |
#include <iostream> using namespace std; int main( ) { int a,b,c; cin>>a>>b>>c; if(a*a>b*c) { cout<<"SQUARE"; } else if(a*a==b*c) { cout<<"SAME"; } else cout<<"RECTANGLE"; return 0; }