#36117: python AC


aa0980949726@gmail.com (統測戰士)

School : 國立華南高級商業職業學校
ID : 224693
IP address : [110.30.8.163]
Last Login :
2023-10-24 00:09:39
k691. 肥余歷險記---(反數學城5)(BOSS!!!!!!!!!) -- 肥余 | From: [203.72.19.125] | Post Date : 2023-07-06 11:42

迴圈+replace 後面在加一個+號因為sqrt後還有數字
 
import math
n = int(input())
for i in range(n):
    y = input()
    if 'sqrt' in y:
        y = y.replace('sqrt', 'math.sqrt(') + ')'
    print(int(eval(y)))
 
ZeroJudge Forum