Pabon_SEC

Largest Prime Divisor

Mar 18th, 2016
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.71 KB | None | 0 0
  1. #include<bits/stdc++.h>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7.  
  8.     long long n,i,cnt,LPD;
  9.  
  10.     while(scanf("%lld",&n)&&n)
  11.     {
  12.         if(n<0)
  13.         {
  14.             n*=-1;
  15.         }
  16.  
  17.         cnt = 0;
  18.  
  19.         for(i=2;i*i<=n;i++)
  20.         {
  21.             if(n%i==0)
  22.             {
  23.                 cnt++;
  24.  
  25.                 while(n%i==0)
  26.                 {
  27.                     n/=i;
  28.                 }
  29.  
  30.                 LPD = i;
  31.             }
  32.         }
  33.  
  34.         if(n>1)
  35.         {
  36.             LPD = n;
  37.             cnt++;
  38.         }
  39.  
  40.         if(cnt>1)
  41.         {
  42.             printf("%lld\n",LPD);
  43.         }
  44.         else
  45.         {
  46.             printf("-1\n");
  47.         }
  48.     }
  49.     return 0;
  50. }
Advertisement
Add Comment
Please, Sign In to add comment