NC14384. 简单幂运算
描述
输入描述
输入一个正整数
输出描述
输出 2^n-1
示例1
输入:
5
输出:
31
原站题解
Python2 解法, 执行用时: 14ms, 内存消耗: 3020K, 提交时间: 2023-03-20 16:28:55
n=int(input()) m=2**n-1 print(m)
Python3 解法, 执行用时: 41ms, 内存消耗: 4648K, 提交时间: 2022-03-18 18:39:27
print(2**int(input())-1)
上一题
下一题