记录详情

Runtime Error


  
# 状态 耗时 内存占用
#1 Runtime Error Traceback (most recent call last): File "foo.py", line 1, in <module> a = (int)(input()) ValueError: invalid literal for int() with base 10: '4 2' 25ms 3.344 MiB

代码

a = (int)(input())
b = (int)(input())
c = 1
ans = 0
while b > 0:
	if b%2==1:
		c = c*a
	a = a*a
	b = b//2
while c > 0:
	ans += c%10
	c = c//10
print(ans)

信息

递交者
类型
自测
题目
观铃题
语言
Python 3
递交时间
2017-05-03 14:57:42
评测时间
2017-05-03 14:57:42
评测机
分数
0
总耗时
25ms
峰值内存
3.344 MiB