NC209794. 使徒袭来
描述
输入描述
一个正整数,表示三位驾驶员的战斗力之积,。
输出描述
输出三位驾驶员最低的战斗力之和,保留3位小数。
示例1
输入:
1
输出:
3.000
Go 解法, 执行用时: 3ms, 内存消耗: 1012K, 提交时间: 2023-08-03 17:48:56
package main import ( "fmt" "math" ) func main() { a, b := 0, 0.0 fmt.Scan(&a) b = math.Pow((float64)(a), 1.0/3) fmt.Printf("%.3f", b*3) }
Python3 解法, 执行用时: 42ms, 内存消耗: 4800K, 提交时间: 2023-08-03 17:47:50
n = int(input()) n = 3*(n**(1/3)) print('%.3f'%n)
PHP 解法, 执行用时: 10ms, 内存消耗: 3680K, 提交时间: 2023-08-03 17:47:24
<?php $product = intval(fgets(STDIN)); $avg = pow($product, 1/3); echo sprintf('%.3f', $avg * 3);
下一题