1 条题解

  • 0
    @ 2024-12-24 9:14:31

    Python :

    # coding=utf-8
    x,y,z=map(float,input().split())
    min=(x-y)**2
    min=min**0.5/2
    max=(x+y)/2
    if(min<z and z<max):
        print('Y')
    else:
        print('N')
    
    
    • 1

    信息

    ID
    497
    时间
    1000ms
    内存
    128MiB
    难度
    (无)
    标签
    (无)
    递交数
    0
    已通过
    0
    上传者