Sequence g=1a+7b (g0=g1=1)
The sequence has g(0)=g(1)=1 and g(n)=1g(n−1)+7g(n−2). Print g(N) modulo 109+7.
Input: one integer N.
Output: g(N) mod 109+7.
Constraints:
- 0 ≤ N ≤ 1018
Sample Tests
Input 1
4
Output 1
71
Input 2
0
Output 2
1
Input 3
1
Output 3
1
Discussion (opens after you solve — no spoilers before)
No comments yet.