Compound with Memory
A value follows V(0)=1, V(1)=2, V(n)=2V(n−1)+2V(n−2). Print V(N) modulo 109+7.
Input: one integer N.
Output: the value modulo 109+7.
Constraints:
- 1 ≤ N ≤ 1018
Sample Tests
Input 1
5
Output 1
120
Input 2
1
Output 2
2
Discussion (opens after you solve — no spoilers before)
No comments yet.