HDU-不容易系列之(3)—— LELE的RPG难题

链接http://acm.hdu.edu.cn/showproblem.php?pid=2045

#include<stdio.h>
int main()
{
    int n,i;
    __int64 a[51];a[1]=3;a[2]=6;a[3]=6;
    while(scanf("%d",&n)!=EOF)
    {
      for(i=4;i<=n;i++)
          a[i]=2*a[i-2]+a[i-1];
      printf("%I64d\n",a[n]);
    }
    return 0;
}
 

 

posted @ 2012-12-27 16:29  再见~雨泉  阅读(152)  评论(0编辑  收藏  举报