Maximum Subsequence Multiplication

简介:

Given an array a contains integers, return
the maximum consecutive multiplication 
Example:
int[] a = {2, -2, -3, 4, -5, 6} ;
return 360 (-3 * 4 * -5 * 6)

code

Code

 本文转自zdd博客园博客,原文链接:http://www.cnblogs.com/graphics/archive/2009/06/10/1500570.html,如需转载请自行联系原作者

相关文章
AtCoderABC257E - Addition and Multiplication
AtCoderABC257E - Addition and Multiplication
81 0
|
存储
LeetCode 329. Longest Increasing Path in a Matrix
给定一个整数矩阵,找出最长递增路径的长度。 对于每个单元格,你可以往上,下,左,右四个方向移动。 你不能在对角线方向上移动或移动到边界外(即不允许环绕)。
69 0
LeetCode 329. Longest Increasing Path in a Matrix
LeetCode 53. Maximum Subarray
给定整数数组nums,找到具有最大总和的子数组(数组要求连续)并且返回数组的和,给定的数组包含至少一个数字。
43 0
ValueError: Sample larger than population or is negative
ValueError: Sample larger than population or is negative
192 0
Maximum Subsequence Sum
最大连续子列和问题,在此给出题解 (浙大PTA https://pintia.cn/problem-sets/16/problems/665)
|
人工智能 机器学习/深度学习
1007. Maximum Subsequence Sum (25)
简析:求最大子列和,并输出其首末元素。在线处理,关键在于求首末元素。 本题囧,16年9月做出来过,现在15分钟只能拿到22分,有一个测试点过不了。
974 0