9 条题解

  • 0
    @ 2024-1-26 21:23:39
    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
    	int a , b , c;
    	cin >> a >> b >> c;
    	if( a + b > c && c + b > a && c + a > b )
    	{
    		cout << "yes";
    	}
    	else
    	{
    		cout << "no";
    	}
    	return 0;
    }
    

    信息

    ID
    879
    时间
    1000ms
    内存
    128MiB
    难度
    3
    标签
    递交数
    560
    已通过
    293
    上传者