4 条题解

  • 1
    @ 2026-5-31 17:06:54

    #include <bits/stdc++.h> using namespace std;

    //main int main() { int a, b, c; cin >> a >> b >> c; if (a + b > c && a + c > b && b + c > a) { cout << "yes" << endl; } else { cout << "no" << endl; }

    return 0;
    

    }

    信息

    ID
    30940
    时间
    1000ms
    内存
    256MiB
    难度
    9
    标签
    (无)
    递交数
    67
    已通过
    7
    上传者