시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 512 MB28202074.074%

문제

You've just advanced from the Qualification Round of Google Code Jam Africa 2010, and you want to know how many of your fellow contestants advanced with you. To give yourself a challenge, you've decided only to look at how many people solved each problem.

The Qualification Round consisted of P problems; the ith problem was fully solved by Sicontestants. Contestants had to solve C problems in order to advance to the next round. Your job is to figure out, using only that information, the maximum number of contestants who could have advanced.

입력

The first line of the input gives the number of test cases, T. T lines follow. Each will consist only of space-separated integers: first P, then C, then P integers S0...SP-1.

Limits

  • 1 ≤ T ≤ 100
  • 1 ≤ C ≤ P
  • 1 ≤ P ≤ 6
  • 0 ≤ Si ≤ 1000

출력

For each test case, output one line containing "Case #x: y", where x is the case number (starting from 1) and y is the maximum number of contestants who could have advanced (in other words, the maximum number of contestants who could have solved at least Cproblems).

예제 입력 1

2
2 2 73 100
3 2 245 272 238

예제 출력 1

Case #1: 73
Case #2: 377

채점 및 기타 정보

  • 예제는 채점하지 않는다.