码迷,mamicode.com
首页 > 其他好文 > 详细

codevs 3164 质因数分解

时间:2018-09-08 21:09:29      阅读:122      评论:0      收藏:0      [点我收藏+]

标签:blank   problem   i++   main   iostream   scanf   tar   ble   include   

3164 质因数分解

#include<iostream>
#include<cstdio>
#include<cstring>
#include<queue>
#include<stack>
#include<cmath>

using namespace std;


int T;
int main()
{
    scanf("%d",&T);
    for(int i=1;i<=T;i++){
        long long x;
        cin>>x;
        int an=0;
        for(long long j=2;j<=sqrt(x);j++)
            while(!(x%j)){
                x/=j;
                ++an;
            }
        if(x!=1) an++;
        printf("%d\n",an);
    }
    return 0;
}

 

codevs 3164 质因数分解

标签:blank   problem   i++   main   iostream   scanf   tar   ble   include   

原文地址:https://www.cnblogs.com/song-/p/9610214.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!