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 /= 2
while c > 0:
ans += c%10
c /= 10
print ans
信息
- 递交者
- 类型
- 自测
- 题目
- 观铃题
- 语言
- Python 3
- 递交时间
- 2017-05-03 14:53:48
- 评测时间
- 2017-05-03 14:53:48
- 评测机
- 分数
- 0
- 总耗时
- 30ms
- 峰值内存
- 3.348 MiB