Time Exceeded
代码
a,b=map(int,input().split())
c=a**b
ans=0
while c!=0:
ans+=c%10
c//=10
print(ans)
信息
- 递交者
- 类型
- 递交
- 题目
- 观铃题
- 语言
- Python 3
- 递交时间
- 2017-06-22 20:31:08
- 评测时间
- 2017-10-30 07:54:39
- 评测机
- 分数
- 30
- 总耗时
- ≥7168ms
- 峰值内存
- ≥4.137 MiB
a,b=map(int,input().split())
c=a**b
ans=0
while c!=0:
ans+=c%10
c//=10
print(ans)