Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
68636 张逸帆 比大小 Python3 Accepted 32 MS 3764 KB 149 2024-03-24 10:10:33

Tests(10/10):


Code:

a,b,c=input().split() a,b,c=int(a),int(b),int(c) if a*a<b*c: print("RECTANGLE") elif a*a==b*c: print("SAME") else: print("SQUARE")