记录详情

Wrong Answer


  
# 状态 耗时 内存占用
#1 Wrong Answer 27ms 3.199 MiB

代码

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:30:06
评测时间
2017-06-22 20:30:06
评测机
分数
0
总耗时
27ms
峰值内存
3.199 MiB