Mid/SeniorMathRecursion

Count Good Numbers

A digit string is good if the digits (0-indexed) at even indices are even and the digits at odd indices are prime (2, 3, 5, or 7).

  • For example, "2582" is good because the digits (2 and 8) at even positions are even and the digits (5 and 2) at odd positions are prime.
  • However, "3245" is not good because 3 is at an even index but is not even.

Given an integer n, return the total number of good digit strings of length n. Since the answer may be large, return it modulo 10^9 + 7.

A digit string is a string consisting of digits 0 through 9 that may contain leading zeros.

Example 1
Inputn = 1
Output5
The good numbers of length 1 are "0", "2", "4", "6", and "8".
Example 2
Inputn = 4
Output400
There are 5 choices for each even index and 4 choices for each odd index, giving 5 * 4 * 5 * 4 = 400 good digit strings.

Constraints

  • 1 <= n <= 10^15

Asked at 7 companies

</>

Your Solution

(Ctrl/Cmd + Enter)

Switching Language

Loading template...

Loading...

Sign in to save your progress

AI code evaluation

Get a correctness verdict, missed edge cases, and complexity analysis of your solution.

Sign in to evaluate