详解与促背模板 -- 算法基础课 -- 数学知识(一):约数之和
作者:
MW10
,
2025-01-14 09:41:28
,
所有人可见
,
阅读 3
/*
I n : a
计算a1 * ... * an 对1e9+7取模队结果
O 整数
I
3
2
6
8
O
252
*/
#include <iostream>
#include <algorithm>
#include <unordered_map>
#include <vector>
using namespace std;
typedef long long LL;
const int N = 110, mod = 1e9 + 7;
int main()
{
int n;
cin >> n;
unordered_map<int, int> primes;
while (n -- )
{
int x;
cin >> x;
// 分解质因数:得到质因数及其次数
for (int i = 2; i <= x / i; i ++ )
while (x % i == 0)
{
x /= i;
primes[i] ++ ;
}
if (x > 1) primes[x] ++ ;
}
// 计算约数之和:p1^0 + ... + p1^n = ((p1 + 1) * ... * p1 + 1)
LL res = 1;
for (auto p : primes)
{
LL a = p.first, b = p.second;
LL t = 1;
while (b -- ) t = (t * a + 1) % mod;
res = res * t % mod;
}
cout << res << endl;
return 0;
}