第一行为两个正整数n和b  ,第二行为1~n  的排列。
输出一个整数,即中位数为b的连续子序列个数。
Input 1: 5 4 1 2 3 4 5 Input 2: 6 3 1 2 4 5 6 3 Input 3: 7 4 5 7 2 4 3 1 6
· \n · \n · · · · \n \n · \n · \n · · · · · \n \n · \n · \n · · · · · · \n
Output 1: 2 Output 2: 1 Output 3: 4
· \n \n \n · \n \n \n · \n \n
第三个样例解释:{4},  {7,2,4},  {5,7,2,4,3}和{5,7,2,4,3,1,6}。
对于40%的数据,n< =300;
对于80%的数据,n< =25000;
对于全部的数据,n< =100000。