题解 | 1=N

1=N

https://www.nowcoder.com/practice/31469f8503c24914acd5c0290ad4dfbb

质因数分解

#include <iostream>
#include<vector>
using namespace std;

int main() {
    int n;
    cin>>n;
    int res=0;
    for(int i=2;i*i<=n;i++){
        while(n%i==0){
            res+=i;
            n/=i;
        }
    }
    if(n>1)res+=n;
    cout<<res;
    return 0;
}

全部评论

相关推荐

11-03 14:57
西北大学 营销
Belltrix:其实就是每根转动一定的角度
点赞 评论 收藏
分享
11-06 16:50
门头沟学院 Java
用微笑面对困难:word打字比赛二等奖的我,也要来凑合凑合
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务