Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146095 c13 比大小 C++ Accepted 0 MS 272 KB 239 2026-01-25 20:58:48

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n,t,a; cin>>a>>n>>t; int u=a*a,w=n*t; if(u<w)cout<<"RECTANGLE"<<endl; else if(u>w)cout<<"SQUARE"<<endl; else cout<<"SAME"<<endl; return 0; }