| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 72664 | sh25_zhuwy | 三角形判断 | C++ | Accepted | 0 MS | 256 KB | 203 | 2025-11-02 13:44:45 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; bool tri=(a+b>c&&b+c>a&&c+a>b); if(tri) { cout<<"yes"; } else { cout<<"no"; } return 0; }