A-Groundhog and 2-Power Representation(2020牛客暑期多校训练营(第九场))
输入描述:
Given a string, indicating the power representation.
输出描述:
Output the original number.
输入
2(2(2+2(0))+2)+2(2(2+2(0)))+2(2(2)+2(0))+2+2(0)
输出
1315
题意就是算这个输入公式的结果
这里提供一个python的做法,还有很多c++的做法可以自己去探讨,比如递归,或者存栈
def x(a):return 2**astr = input()
str = str.replace("2(","x(")
print(eval(str))