시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB54150.000%

문제

Bobo has a very very long binary sequence $s$ of length $n$. All except $m$ positions $x_1, x_2, \dots, x_m$ are $0$ (And $s_{x_1} = s_{x_2} = \dots = s_{x_m} = 1$).

Now bobo would like to know the number of distinct consecutive substrings of $s$.

입력

The first line contains $2$ integers $n, m$ ($1 \leq n \leq 10^9, 1 \leq m \leq \min\{n, 1000\}$).

The second line contains $m$ integers $x_1, x_2, \dots, x_m$ ($1 \leq x_1 < x_2 < \dots < x_m \leq n$).

출력

A single integer denotes the number of distinct substrings.

예제 입력 1

3 2
1 3

예제 출력 1

5

예제 입력 2

1000000000 1
1

예제 출력 2

1999999999