mirror of
https://github.com/codeflash-ai/codeflash-internal.git
synced 2026-05-04 18:25:18 +00:00
8 lines
154 B
Python
8 lines
154 B
Python
def problem_p02731(input_data):
|
|
import numpy as np
|
|
|
|
L = np.array(int(eval(input_data)), dtype="float128")
|
|
|
|
ans = (L / 3) ** 3
|
|
|
|
return ans
|