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