Runtime Error
代码
#include <iostream>
using namespace std;
#define NUM 1000000007
int main(){
int n;
cin>>n;
long long temp[n+1000];
temp[0]=0;temp[1]=1;temp[2]=2;
for(int i=3;i<=n;i++)
temp[i] = ((temp[i-1]+temp[i-2])%NUM)%NUM;
cout<<temp[n]<<endl;
return 0;
}