幂的末尾(python简单解法) 摘要:解题思路:这题很简单,直接看注释参考代码:a, b = map(int, input().split())x = (a ** b) % 1000 #要求a**b的末三位,所以取1000的余数if…… 题解列表 2023年12月11日 0 点赞 0 评论 292 浏览 评分:6.0
编写题解 3015: 幂的末尾 摘要:解题思路:注意事项:参考代码:a,b=map(int,input().split())c=pow(a,b)d=c%1000print(f'{d:0>3d}')…… 题解列表 2024年03月01日 0 点赞 0 评论 86 浏览 评分:0.0