1 条题解

  • 0
    @ 2024-7-25 12:47:41

    参考答案:

    #include <iostream>
    
    using namespace std;
    
    int main() 
    {
    	int a, b, c;
    	int l, w, h;
    
    	cin >> a >> b >> c;
    	l = sqrt(a * b / c);
    	w = sqrt(a * c / b);
    	h = sqrt(b * c / a);
    
    	cout << 4 * (l + w + h) << endl;
    
    	return 0;
    }
    
    • 1

    信息

    ID
    39
    时间
    1000ms
    内存
    256MiB
    难度
    10
    标签
    递交数
    5
    已通过
    2
    上传者