Doubling Plus Carry
A quantity follows Q(0)=1, Q(1)=3, Q(n)=3Q(n−1)−Q(n−2). Print Q(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
144
Input 2
1
Output 2
3
Discussion (opens after you solve — no spoilers before)
No comments yet.