1 条题解

  • 0
    @ 2026-8-20 11:53:30

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

    int main() { int x; cin >> x; if (x >= 5 && x % 2 == 1) { cout << "easy"; } else if (x >= 5 && x % 2 == 0) { cout << "difficult"; } else if (x < 5) { cout << "normal"; }

    }

    • 1

    信息

    ID
    31235
    时间
    1000ms
    内存
    256MiB
    难度
    4
    标签
    递交数
    77
    已通过
    38
    上传者