HPU暑期第五次积分赛 F - 辞树的质因数分解

题目

代码

#include <iostream>
#include <cstring>
using namespace std;
const int maxn=1e6 + 100;
int ans[maxn],a[maxn];
int main()
{
    int t,n,i,j;
    cin>>t;
    while(t--)
    {
        j=0;
        memset(ans,0,sizeof(ans));
        memset(a,0,sizeof(a));
        cin>>n;
        int k=n;
        if(n==0 || n==1)
        {
            cout<<n<<endl;
            continue;
        }
        for(i=2;i<=(k+1)/2;i++)
        {
            if(n%i==0)
            {
                    a[j++]=i;
                    ans[i]=0;
                    while(n%i==0)
                    {
                        n/=i;
                        ans[i]++;
                    }
            }
        }
        if(j==0) 
        {
            cout<<n<<"=";
            cout<<n<<"^"<<"1"<<endl;
        }
        else
        {
            cout<<k<<"=";
            for(i=0;i<j;i++)
            {
                cout<<a[i]<<"^";
                cout<<ans[a[i]];
                if(i!=j-1) cout<<"*";
            }
            cout<<endl;
        }
    }
    return 0;
}
全部评论

相关推荐

hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
11-18 15:57
门头沟学院 Java
最终归宿是测开:这个重邮的大佬在重邮很有名的,他就喜欢打92的脸,越有人质疑他,他越觉得爽😂
点赞 评论 收藏
分享
昨天 11:23
重庆邮电大学 C++
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务