CF550B Preparing Olympiad

Description

You have $ n $ problems. You have estimated the difficulty of the $ i $ -th one as integer $ c_{i} $ . Now you want to prepare a problemset for a contest, using some of the problems you've made. A problemset for the contest must consist of at least two problems. You think that the total difficulty of the problems of the contest must be at least $ l $ and at most $ r $ . Also, you think that the difference between difficulties of the easiest and the hardest of the chosen problems must be at least $ x $ . Find the number of ways to choose a problemset for the contest.

Input Format

The first line contains four integers $ n $ , $ l $ , $ r $ , $ x $ ( $ 1

Output Format

Print the number of ways to choose a suitable problemset for the contest.

Explanation/Hint

In the first example two sets are suitable, one consisting of the second and third problem, another one consisting of all three problems. In the second example, two sets of problems are suitable — the set of problems with difficulties 10 and 30 as well as the set of problems with difficulties 20 and 30. In the third example any set consisting of one problem of difficulty 10 and one problem of difficulty 20 is suitable.