시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB95451936.538%

문제

After returning from the Wonderland, Alice needs to improve her scientific skills in this current digital world. Alice decides to participate the ACM-ICPC Asia Nha Trang Regional Contest 2016 to evaluate her actual performance. Her most favorite problem in the contest is following.

Given an array of positive integers A = a1, a2,…, an, a subarray Ai,j of A is a sequence of
continuous elements in A, i.e., Ai,j = ai, ai+1,…, aj (where 1 ≤ i ≤ j ≤ n). The weight of Ai,j is the sum of all its elements,

Given an integer m, your task is to find the maximum weight subarray of \(A\) that contains only one m as the minimum element. You can assume that A always contains at least one element with value m.

입력

The input consists of several datasets. The first line of the input contains the number of datasets, which is a positive number and is not greater than 20. The following lines describe the datasets.

Each dataset is described by the following lines:

  • The first line contains 2 positive integers n and m (n ≤ 105; m ≤ 26).
  • The second line contains n positive integers, each with value at most 26.

출력

For each dataset, write out on one line the found maximum weight.

예제 입력 1

1
6 2
1 3 2 6 2 4

예제 출력 1

12

출처

ICPC > Regionals > Asia Pacific > Vietnam > 2016 Nha Trang Regional Contest A번

  • 잘못된 데이터를 찾은 사람: jh05013