import java.util.stream.StreamSupport;publicclassMain{publicstaticvoidmain(String[] args){long n =2021041820210418L;long[] factor =newlong[100001];int res =0;int pos =0;//求因子for(long i =1; i <= n/i; i++){if(n % i ==0){
factor[pos++]= i;if(i != n / i){
factor[pos++]= n / i;}}}for(int i =0; i < pos; i++){for(int j =0; j < pos; j++){if(factor[i]* factor[j]> n){continue;}for(int k =0; k < pos; k++){if(factor[i]* factor[j]* factor[k]== n){
res++;}}}}
System.out.println(res);}}