提交时间:2026-02-05 16:17:49

运行 ID: 84018

n = int(input()) result = (1 << (n + 1)) - 2 # 位运算左移相当于乘以 2^(n+1) print(result)