标签:col code using ios limit 质因数 输出 acm 限制
给定两个数n,m,其中m是一个素数。
将n(0<=n<=2^31)的阶乘分解质因数,求其中有多少个m。
注:^为求幂符号。
3 100 5 16 2 1000000000 13
24 15 83333329
#include <iostream> using namespace std; int main(){ int n; int a,b; cin>>n; while (n--) { cin>>a>>b; int sum = 0; while (b <= a) { sum += a/b; a /= b; } cout<<sum<<endl; } return 0; }
标签:col code using ios limit 质因数 输出 acm 限制
原文地址:https://www.cnblogs.com/lyc94620/p/9941476.html