分析

根据多元均值不等式

代码

#include<bits/stdc++.h>
using namespace std;
int main()
{
    int n;cin >> n;
    printf("%.3f",pow(n,1.0/3)*3);
    return 0;
}