Problems > Compound with Memory

Compound with Memory

Difficulty: 1700 4000 ms 128 MB

math matrix-exponentiation

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

Read the Editorial

Discussion (opens after you solve — no spoilers before)

No comments yet.

Submit Your Solution

Log in or create a free account to run and submit code.