Product Of All Perfect Square Term Upto n
Question Brief :
A Number 'n' is given to you , you are said to find the product of all the perfect square term less than or equal to n.
Prequisite : Basic Mathematics, Preprocessing
Approach :
Perfect Square numbers upto any number n are only these:
(12,22,........,(√n)2)
In Question it was asked to find the product of all perfect square numbers.i.e.
ans = (12 x 22 x....... x (√n)2)
it can be easily transformed to:
ans = (1 x 2 x....... x √n)2
ans=(√n!)2
So, in each query , for given value of any n, we had to print the square of factorial of square root of n.
This can be easily answered in O(1) if we already preprocess the number 1 to sqrt(N) and store their factorial already.
SETTER CODE :
SETTER CODE :
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-------pi(r^2)=(n!)^2 | |
import math | |
fact=[1] | |
#----------Preprocessing---------------# | |
def preprocess(): | |
for i in range(100000): | |
fact.append((fact[i]*(i+1))%1000000007) | |
def main(): | |
preprocess() | |
t=int(input()) | |
for i in range(t): | |
n=int(input()) | |
n=int(math.sqrt(n)) | |
ans=(fact[n]**2)%1000000007 | |
print(ans) | |
if __name__=="__main__": | |
main() |
Comments
Post a Comment