-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdivisorsOfFactorial.cpp
More file actions
104 lines (66 loc) · 1.26 KB
/
divisorsOfFactorial.cpp
File metadata and controls
104 lines (66 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
// Divisors Of Factorial
// Given a number, find the total number of divisors of the factorial of the number.
// Since the answer can be very large, print answer modulo 10^9+7.
// Input
// The first line contains T, number of testcases.
// T lines follows each containing the number N.
// Output
// Print T lines of output each containing the answer.
// Constraints
// 1 <= T <= 500
// 0 <= N <= 50000
// Sample Input:
// 3
// 2
// 3
// 4
// Sample Output:
// 2
// 4
// 8
#include<iostream>
using namespace std;
long m = 1e9 + 7;
void createSieve(bool *sieve, int n) {
for(int i = 0; i <= n; i++) {
sieve[i] = true;
}
sieve[0] = false;
sieve[1] = false;
for(int i = 2; i*i <= n; i++) {
if(sieve[i]) {
for(int j = i; i*j <= n; j++) {
sieve[i*j] = false;
}
}
}
}
long getNoOfDivisorsOfFactorial(int n) {
bool *sieve = new bool[n+1];
createSieve(sieve, n);
long count = 1;
for(int i = 2; i <= n; i++) {
if(sieve[i]) {
int power = 0;
int p = i;
while(p <= n) {
power += n/p;
p *= i;
}
count = (count * (power + 1))%m;
}
}
delete sieve;
return count;
}
int main() {
int t;
cin >> t;
while(t--) {
int n;
cin >> n;
long ans = getNoOfDivisorsOfFactorial(n);
cout << ans << endl;
}
return 0;
}