4 条题解

  • 1
    @ 2018-11-07 13:51:05

    看来是目前最短的

    a=int(input())
    b=int(input())
    c=int(input())
    print("yes" if (2*max(a,max(b,c))<a+b+c)else "no")
    
  • 0
    @ 2021-01-27 20:56:15

    挑战最长。。

    #include <bits/stdc++.h>
    using namespace std;
    int main()
    {
        float a,b,c;
        cin>>a>>b>>c;
        if(a+b>c&&a+c>b&&b+c>a)
            cout<<"yes";
        else
            cout<<"no";
        return 0;
    }
    
  • 0
    @ 2017-11-09 12:03:41

    a=int(input())
    b=int(input())
    c=int(input())
    if(a+b>c and a+c>b and b+c>a):
    print("yes")
    else:
    print("no")

  • 0
    @ 2017-11-07 16:23:02

    a=int(input())
    b=int(input())
    c=int(input())
    if((a+b)>c and (max(a,b)-min(a,b))<c):
    print("yes")
    else:
    print("no")

  • 1

信息

难度
3
分类
(无)
标签
(无)
递交数
859
已通过
309
通过率
36%
上传者