1 条题解

  • 1
    @ 2024-12-24 12:28:11

    #include #include using namespace std;

    int main() { int n; cin >> n; // 计算n的立方根并取整 int cube_root = round(pow(n, 1.0 / 3.0)); // 判断取整后的立方根的立方是否等于n if (cube_root * cube_root * cube_root == n) { cout << "Yes" << endl; } else { cout << "No" << endl; } return 0; }

    • 1

    信息

    ID
    5017
    时间
    1000ms
    内存
    512MiB
    难度
    1
    标签
    递交数
    53
    已通过
    13
    上传者