| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 80194 | sh25_wangtaojie | 查找路径 | C++ | Wrong Answer | 0 MS | 244 KB | 254 | 2026-01-04 15:06:43 |
#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; }