Runtime Error
代码
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