NP82. 数学幂运算
描述
输入描述
一行输入两个正整数,以空格间隔。输出描述
分别两行输出计算xy与yx示例1
输入:
3 4
输出:
81 64
Python 3 解法, 执行用时: 30ms, 内存消耗: 4644KB, 提交时间: 2022-07-28
x,y=map(int,input().split()) print(x**y) print(y**x)
Python 3 解法, 执行用时: 31ms, 内存消耗: 4540KB, 提交时间: 2022-08-04
x, y = list(map(int, input().split())) print(x ** y) print(y ** x)
Python 3 解法, 执行用时: 32ms, 内存消耗: 4520KB, 提交时间: 2022-07-30
x,y=list(map(int,input().split())) print(pow(x,y)) print(pow(y,x))
Python 3 解法, 执行用时: 32ms, 内存消耗: 4544KB, 提交时间: 2022-08-05
#nums = [int(i) for i in input().split()] nums = list(map(int,input().split())) print(nums[0]**nums[1],nums[1]**nums[0],sep='\n')
Python 3 解法, 执行用时: 32ms, 内存消耗: 4592KB, 提交时间: 2022-08-04
x,y = tuple(map(int,input().split())) print(x**y,y**x,sep='\n')