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

문제

You received a card with an integer $S$ and a multiplication table of infinite size. All the elements in the table are integers, and an integer at the $i$-th row from the top and the $j$-th column from the left is $A_{i, j} = i \times j$ ($i, j \ge 1$). The table has infinite size, i.e., the number of the rows and the number of the columns are infinite.

You love rectangular regions of the table in which the sum of numbers is $S$. Your task is to count the number of integer tuples $(a, b, c, d)$ that satisfies $1 \leq a \leq b, 1 \leq c \leq d$ and $\sum_{i=a}^{b} \sum_{j=c}^{d} A_{i,j} = S$.

입력

The input consists of a single test case of the following form.

$S$

The first line consists of one integer $S$ ($1 \leq S \leq 10^5$), representing the summation of rectangular regions you have to find.

출력

Print the number of rectangular regions whose summation is $S$ in one line.

예제 입력 1

25

예제 출력 1

10

예제 입력 2

1

예제 출력 2

1

예제 입력 3

5

예제 출력 3

4

예제 입력 4

83160

예제 출력 4

5120