Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
76687 sh25_zhuhy 三角形判断 C++ 通过 0 MS 244 KB 248 2025-12-19 15:45:47

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main() { int a,b,c,d,e,f; cin>>a>>b>>c; d=a; if(b>d) d=b; if(c>d) d=c; e=a; if(b<e) e=b; if(c<e) e=c; f=a+b+c-d-e; if(d>f+e) cout<<"no"; if(d<f+e) cout<<"yes"; }


测评信息: