Advertisement
Araf_12

NOD ( Number of divisor)

Nov 8th, 2024
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | Source Code | 0 0
  1.   ll n;cin>>n;
  2.   map<ll,ll>mp;
  3.  
  4.   for(ll i=2; i<=n; i++){
  5.     ll tmp = i;
  6.  
  7.     for(ll j=2; j*j<=tmp; j++){
  8.       if(tmp%j == 0){
  9.         while(tmp%j == 0){
  10.           mp[j]++;
  11.           tmp/=j;
  12.         }
  13.       }
  14.     }
  15.     if(tmp>1)mp[tmp]++;
  16.   }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement