| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 145068 | 刘宸宇 | 比大小 | C++ | Accepted | 0 MS | 272 KB | 251 | 2026-01-24 20:35:32 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; int d=a*a; int u=b*c; if(d>u) cout<<"SQUARE"<<endl; else if(u>d) cout<<"RECTANGLE"<<endl; else cout<<"SAME"<<endl; return 0; }