-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
64 lines (59 loc) · 1.73 KB
/
main.go
File metadata and controls
64 lines (59 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Source: https://leetcode.com/problems/count-good-numbers
// Title: Count Good Numbers
// Difficulty: Medium
// Author: Mu Yang <http://muyang.pro>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// 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:**
//
// ```
// Input: n = 1
// Output: 5
// Explanation: The good numbers of length 1 are "0", "2", "4", "6", "8".
// ```
//
// **Example 2:**
//
// ```
// Input: n = 4
// Output: 400
// ```
//
// **Example 3:**
//
// ```
// Input: n = 50
// Output: 564908303
// ```
//
// **Constraints:**
//
// - `1 <= n <= 10^15`
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package main
const modulo = int(1e9 + 7)
// Res = 5^(#even) * 4^(#odd)
func countGoodNumbers(n int64) int {
odd := n / 2
even := n - odd
return (_fastPow(5, even) * _fastPow(4, odd)) % modulo
}
func _fastPow(x int, n int64) int {
res := 1
for n > 0 {
if (n & 1) != 0 {
res = (res * x) % modulo
}
n >>= 1
x = (x * x) % modulo
}
return res
}