阶乘末尾的K位 摘要:解题思路:注意事项:参考代码:#include <stdio.h>long long a[100];int main(){ int n,m,k=0,i; long lo…… 题解列表 2022年11月13日 0 点赞 0 评论 168 浏览 评分:0.0
阶乘末尾的K位 摘要:解题思路:注意事项:参考代码:from math import*n,k = map(int,input().split())a = str(factorial(n))while a.endswith(…… 题解列表 2023年04月06日 0 点赞 0 评论 175 浏览 评分:0.0