#D965. Coin Combination Problem
Coin Combination Problem
Coin Combination Problem
You have 4 bags A, B, C and D each of which includes N coins (there are totally 4N coins). Values of the coins in each bag are ai, bi, ci and di respectively.
Find the number of combinations that result when you choose one coin from each bag (totally 4 coins) in such a way that the total value of the coins is V. You should distinguish the coins in a bag.
Constraints
- 1 ≤ N ≤ 1000
- 1 ≤ ai, bi, ci, di ≤ 1016
- 1 ≤ V ≤ 1016
- All input values are given in integers
Input
The input is given in the following format.
N V a1 a2 ... aN b1 b2 ... bN c1 c2 ... cN d1 d2 ... dN
Output
Print the number of combinations in a line.
Examples
Input
3 14 3 1 2 4 8 2 1 2 3 7 3 2
Output
9
Input
5 4 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Output
625
inputFormat
input values are given in integers
Input
The input is given in the following format.
N V a1 a2 ... aN b1 b2 ... bN c1 c2 ... cN d1 d2 ... dN
outputFormat
Output
Print the number of combinations in a line.
Examples
Input
3 14 3 1 2 4 8 2 1 2 3 7 3 2
Output
9
Input
5 4 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Output
625
样例
3 14
3 1 2
4 8 2
1 2 3
7 3 2
9