#Lutece0771. 最大容积

最大容积

Migrated from Lutece 771 最大容积

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

xx 轴的正整数坐标 1,2,,N1, 2, \cdots , N 上分别竖立着一条线段,高度分别为 h1,h2,,hNh_1, h_2, \cdots , h_N。这样只要我们任意选择两条线段 i,ji, j,再加上 xx 轴就能围成一个水槽了(只不过是二维的)。

由于短板效应,这个水槽的容积应该是

$V = S\times h = \left | j-i \right |\times \min(h_i, h_j)$

那么选哪两条线段与 xx 轴构成的水槽容积最大呢?

Input

输入一共两行:

第一行是一个正整数 NN,代表一共有多少条线段,其中 2<N<1062 < N < 10^6

第二行是 NN 个正整数 h1,h2,,hNh_1, h_2, \cdots , h_N,分别表示线段 1,2,,N1, 2, \cdots , N 的高度,其中 0hi<1030\leq h_i < 10^3

Output

输出最大容积。

Samples

5
1 3 6 4 2
6

Resources

第四届”英才创协杯”ACM编程挑战赛