分析
- 我们可以分别将每一个待相乘的数据分解质因数,然后记录每个质因数出现的次数,最后带公式求解即可。
- 关于质因数分解可以参考:网址。
#include <iostream>
#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> cnt; // (质因子,质因子个数)
while (n--) {
int x;
cin >> x;
for (int i = 2; i <= x / i; i++)
while (x % i == 0) {
x /= i;
cnt[i]++;
}
if (x > 1) cnt[x]++;
}
LL res = 1;
for (auto t : cnt) res = res * (t.second + 1) % mod;
cout << res << endl;
return 0;
}