diff --git a/SOLUTIONS/Mystery.gp b/SOLUTIONS/Mystery.gp new file mode 100644 index 00000000..b07a70fc --- /dev/null +++ b/SOLUTIONS/Mystery.gp @@ -0,0 +1,16 @@ +\\author:cielavenir (https://github.com/cielavenir) + +f()={ + t=input(); + for(i=1,t, + n=input(); + fac=factor(n); + factra=fac~; + r=1; + for(j=1,#factra, + r=r*(fac[j,2]+1) + ); + print(r) + ) +} +f()