101475: [AtCoder]ABC147 F - Sum Difference

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $600$ points

Problem Statement

We have an integer sequence $A$ of length $N$, where $A_1 = X, A_{i+1} = A_i + D (1 \leq i < N )$ holds.

Takahashi will take some (possibly all or none) of the elements in this sequence, and Aoki will take all of the others.

Let $S$ and $T$ be the sum of the numbers taken by Takahashi and Aoki, respectively. How many possible values of $S - T$ are there?

Constraints

  • $-10^8 \leq X, D \leq 10^8$
  • $1 \leq N \leq 2 \times 10^5$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

$N$ $X$ $D$

Output

Print the number of possible values of $S - T$.


Sample Input 1

3 4 2

Sample Output 1

8

$A$ is $(4, 6, 8)$.

There are eight ways for (Takahashi, Aoki) to take the elements: $((), (4, 6, 8)), ((4), (6, 8)), ((6), (4, 8)), ((8), (4, 6))), ((4, 6), (8))), ((4, 8), (6))), ((6, 8), (4)))$, and $((4, 6, 8), ())$.

The values of $S - T$ in these ways are $-18, -10, -6, -2, 2, 6, 10$, and $18$, respectively, so there are eight possible values of $S - T$.


Sample Input 2

2 3 -3

Sample Output 2

2

$A$ is $(3, 0)$. There are two possible values of $S - T$: $-3$ and $3$.


Sample Input 3

100 14 20

Sample Output 3

49805

Input

题意翻译

给一个首项为$X$,公差为$D$,项数为$N$的等差数列$A$,定义 $$w(S)=\sum_{i\in S}A_i-\sum_{i\not\in S}A_i$$ 对于所有$S\subseteq \{1,2,...,N\}$,求有多少种不同的$w(S)$

加入题单

算法标签: