시간 제한메모리 제한제출정답맞힌 사람정답 비율
20 초 (추가 시간 없음) 1024 MB83383447.222%

문제

Isyana is given the number of visitors at her local theme park on N consecutive days. The number of visitors on the i-th day is Vi. A day is record breaking if it satisfies both of the following conditions:

  • The number of visitors on the day is strictly larger than the number of visitors on each of the previous days.
  • Either it is the last day, or the number of visitors on the day is strictly larger than the number of visitors on the following day.

Note that the very first day could be a record breaking day!

Please help Isyana find out the number of record breaking days.

입력

The first line of the input gives the number of test cases, TT test cases follow. Each test case begins with a line containing the integer N. The second line contains N integers. The i-th integer is Vi.

출력

For each test case, output one line containing Case #x: y, where x is the test case number (starting from 1) and y is the number of record breaking days.

제한

  • 1 ≤ T ≤ 100.
  • 0 ≤ Vi ≤ 2 × 105.

Test Set 1 (4점)

  • 1 ≤ N ≤ 1000.

Test Set 2 (8점)

  • 1 ≤ N ≤ 2 × 105 for at most 10 test cases.
  • For the remaining cases, 1 ≤ N ≤ 1000.

예제 입력 1

4
8
1 2 0 7 2 0 2 0
6
4 8 15 16 23 42
9
3 1 4 1 5 9 2 6 5
6
9 9 9 9 9 9

예제 출력 1

Case #1: 2
Case #2: 1
Case #3: 3
Case #4: 0

힌트

In Sample Case #1, the bold and underlined numbers in the following represent the record breaking days: 1 2 0 7 2 0 2 0.

In Sample Case #2, only the last day is a record breaking day.

In Sample Case #3, the first, the third, and the sixth days are record breaking days.

In Sample Case #4, there is no record breaking day.

채점 및 기타 정보

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