Advertisement
noshin98

uva 1000 bee

Jun 29th, 2016
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.98 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3. {
  4.     long long N,i,M,A,a,b,c,d,e,f,P,Q;
  5.     while(scanf("%lld",&N)==1)
  6.     {
  7.         if(N<0)
  8.             break;
  9.         if(N==0)
  10.  
  11.         {
  12.            M=0;
  13.            A=1;
  14.            printf("%lld %lld\n",M,A);
  15.  
  16.         }
  17.  
  18.  
  19.         if(N==1)
  20.         {
  21.             M=1;
  22.             A=2;
  23.             printf("%lld %lld\n",M,A);
  24.         }
  25.  
  26.  
  27.         if(N>=2)
  28.         {
  29.             M=1;
  30.             A=2;
  31.             a=0;
  32.             b=1;
  33.             d=1;
  34.             e=1;
  35.             for(i=2;i<=N;i++)
  36.             {
  37.  
  38.                 c=a+b;
  39.                 a=b;
  40.                 b=c;
  41.  
  42.                 Q=M+c;
  43.                 M=Q;
  44.             }
  45.             printf("%lld ",Q);
  46.  
  47.             for(i=2;i<=N;i++)
  48.             {
  49.                 f=d+e;
  50.                 d=e;
  51.                 e=f;
  52.                 P=A+f;
  53.                 A=P;
  54.  
  55.  
  56.             }
  57.              printf("%lld\n",P);
  58.  
  59.  
  60.         }
  61.  
  62.  
  63.     }
  64.     return 0;
  65.  
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement