Again Prime? No Time.

The problem statement is very easy. Given a number n you have to determine the largest power of m,
not necessarily prime, that divides n!.
Input
The input file consists of several test cases. The first line in the file is the number of cases to handle.
The following lines are the cases each of which contains two integers m (1 < m < 5000) and n
(0 < n < 10000). The integers are separated by an space. There will be no invalid cases given and
there are not more that 500 test cases.
Output
For each case in the input, print the case number and result in separate lines. The result is either an
integer if m divides n! or a line ‘Impossible to divide’ (without the quotes). Check the sample input
and output format.

我是在其它博客看的题解,非常的机智,很多细节,膜拜:http://blog.csdn.net/u011345136/article/details/38658977?utm_source=tuicool&utm_medium=referral


#include <iostream>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <cmath>
#include <algorithm>
#define inf 0x3f3f3f3f;
using namespace std;
int main()
{
    int N,m,n,num,i,sum,p,ans,x=1;
    cin>>N;
    while(N--)
    {
        i=2;
        ans=inf;
        cin>>m>>n;
        while(m!=1)
        {
            p=0;
            while(m%i==0)
            {
                m=m/i;
                p++;
            }
            if(p)
            {
                num=n;
                sum=0;
                while(num)
                {
                    sum+=num/i;
                    num=num/i;
                }
                ans = min(ans, sum/p);
            }
            i++;
        }
        cout<<"Case "<<x++<<":"<<endl;

        if(ans)
        cout<<ans<<endl;
        else
            cout<<"Impossible to divide"<<endl;

    }
        return 0;
}

“`

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值