Histogram

2 seconds
64 MB
Medium
LOJ-1083 Udebug Debug
English

A histogram is a polygon composed of a sequence of rectangles aligned at a common base line. The rectangles have equal widths but may have different heights. For example, the figure shows the histogram that consists of rectangles with the heights {2, 1, 4, 5, 1, 3, 3} measured in units where the width of the rectangles is 1.

Histogram

Usually, histograms are used to represent discrete distributions, e.g., the frequencies of characters in texts. Note that the order of the rectangles, i.e., their heights, is important. Calculate the area of the largest rectangle in a histogram that is aligned at the common base line, too. The figure on the right shows the largest aligned rectangle for the depicted histogram.

Input

Input starts with an integer T (≤ 20), denoting the number of test cases.

Each case contains a line with an integer N (1 ≤ N ≤ 30000) denoting the number of rectangles. The next line contains N space separated positive integers (≤ 30000) denoting the heights.

Output

For each case, print the case number and the largest rectangle that can be made.

Sample

Sample Input Sample Output

2 7 2 1 4 5 1 3 3 5 4 4 3 2 4

Case 1: 8 Case 2: 10

Notes

Dataset is huge; use faster I/O methods.