Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
123106 丁俊杰 13猴子吃桃 Python3 Accepted 38 MS 3752 KB 76 2025-06-28 00:30:28

Tests(10/10):


Code:

n=int(input()) res=1 for i in range(n-1): res=(res+1)*2 print(res)