| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 76687 | sh25_zhuhy | 三角形判断 | C++ | Accepted | 0 MS | 244 KB | 248 | 2025-12-19 15:45:47 |
#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"; }