Max Score: 500 Points

Problem Statement

We have a grid with n rows and 7 columns. We call it a calendar. The cell at i-th row and j-th column is denoted (i, j).
Initially, each cell at (i, j) contains the integer 7i + j - 8, and each cell is white.

Snuke likes painting, so he decided integer m, and did q operations with a calendar.
・In i-th operation, he paint black on the cell in which an integer is written such remainder of dividing by m is a_i.

Please count the number of connected white parts.
Note that if two adjacent cells are white, the cells belong to the same connected part.

Input Format

The input format is following:
n m q
a_1 a_2 ... a_q

Output Format

Print the number of connected part in one line.

Constraints

  • n10^{12}
  • 7n is divisible by m.
  • 1 ≤ qm10^5
  • 0a_1 < a_2 < ... < a_q < m

Scoring

Subtask 1 [100 points]
  • n100000.
Subtask 2 [90 points]
  • m is divisible by 7.
  • a_{i + 1} - a_i = 1.
Subtask 3 [200 points]
  • m is divisible by 7.
Subtask 4 [110 points]
  • There are no additional constraints.

Sample Input 1

7 7 3
1 3 5

Sample Output 1

4
The calendar looks like this:

Sample Input 2

10 14 8
5 6 7 8 9 10 11 12

Sample Output 2

10
The calendar looks like this: