现给n个整数的序列(包含负数),求最大连续子序列积。
输入n(n≤31)和n个整数。
输出该序列中最大的连续子序列积和最小的连续子序列积,保证结果不超过long long类型取值范围。
long long
5 -5 3 9 10 -5
6750 -1350