You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
245 B
C++

#include <cstdio>
long long f[4];
int main()
{
f[1] = 1;
int n;
scanf("%d", &n);
for (int i = 2; i <= n; i++)
f[i & 3] = ((f[(i - 1) & 3] << 1) + f[(i - 2) & 3]) % 1000000007;
printf("%lld", f[n & 3]);
return 0;
}