标签:content amp i++ 0ms can ++ 限制 code 出差
总时间限制:1000ms内存限制:65536kB
4
5
一道特别简单的DP题
#include<stdio.h> int n,a[22]={1,1}; int main() { scanf("%d",&n); if(n==1) { printf("1"); return 0; } for(int i=2;i<=n;i++) a[i]=a[i-1]+a[i-2]; printf("%d",a[n]); return 0; }
标签:content amp i++ 0ms can ++ 限制 code 出差
原文地址:http://www.cnblogs.com/wisdom-jie/p/7740081.html