求取约数的个数

Posted 最爱小崔同学

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求取约数的个数相关的知识,希望对你有一定的参考价值。

#include<iostream>
#include<algorithm>
#include<unordered_map>
using  namespace std;
typedef long long LL;
const int mod=1e9+7;
int main()

    int n;
    cin>>n;
    unordered_map<int ,int > primes;
    while(n--)
    
        int x;
        scanf("%d",&x);
        for(int i=2;i<=x/i;i++)
        while(x%i==0)
        
            primes[i]++;    
            x=x/i;
            
        if(x>1) primes[x]++;
        
    LL res=1;
    for(auto x:primes) 
    
         res=res*(x.second+1)%mod;
    
    cout<<res;
    return 0;
 

以上是关于求取约数的个数的主要内容,如果未能解决你的问题,请参考以下文章

求取约数的个数

求取约数的个数

求取一个数的约数

求取一个数的约数

求取一个数的约数

求取约数之和