1672:最富有客户的资产总量

This commit is contained in:
轩辕龙儿 2022-04-14 08:52:16 +08:00
parent 1a41f1a398
commit b21dde85fc
2 changed files with 114 additions and 0 deletions

View File

@ -0,0 +1,71 @@
//给你一个 m x n 的整数网格 accounts 其中 accounts[i][j] 是第 i 位客户在第 j 家银行托管的资产数量返回最富有客户所拥
//有的 资产总量
//
// 客户的 资产总量 就是他们在各家银行托管的资产数量之和最富有客户就是 资产总量 最大的客户
//
//
//
// 示例 1
//
// 输入accounts = [[1,2,3],[3,2,1]]
//输出6
//解释
// 1 位客户的资产总量 = 1 + 2 + 3 = 6
// 2 位客户的资产总量 = 3 + 2 + 1 = 6
//两位客户都是最富有的资产总量都是 6 所以返回 6
//
//
// 示例 2
//
// 输入accounts = [[1,5],[7,3],[3,5]]
//输出10
//解释
// 1 位客户的资产总量 = 6
// 2 位客户的资产总量 = 10
// 3 位客户的资产总量 = 8
// 2 位客户是最富有的资产总量是 10
//
// 示例 3
//
// 输入accounts = [[2,8,7],[7,1,3],[1,9,5]]
//输出17
//
//
//
//
// 提示
//
//
// m == accounts.length
// n == accounts[i].length
// 1 <= m, n <= 50
// 1 <= accounts[i][j] <= 100
//
// Related Topics 数组 矩阵 👍 53 👎 0
package leetcode.editor.cn;
//1672:最富有客户的资产总量
public class RichestCustomerWealth {
public static void main(String[] args) {
Solution solution = new RichestCustomerWealth().new Solution();
// TO TEST
}
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int maximumWealth(int[][] accounts) {
int max = 0;
for (int[] account : accounts) {
int sum = 0;
for (int i : account) {
sum += i;
}
max = Math.max(max, sum);
}
return max;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,43 @@
<p>给你一个 <code>m x n</code> 的整数网格 <code>accounts</code> ,其中 <code>accounts[i][j]</code> 是第 <code>i<sup></sup></code> 位客户在第 <code>j</code> 家银行托管的资产数量。返回最富有客户所拥有的 <strong>资产总量</strong></p>
<p>客户的 <strong>资产总量</strong> 就是他们在各家银行托管的资产数量之和。最富有客户就是 <strong>资产总量</strong> 最大的客户。</p>
<p> </p>
<p><strong>示例 1</strong></p>
<pre><strong>输入:</strong>accounts = [[1,2,3],[3,2,1]]
<strong>输出:</strong>6
<strong>解释:</strong>
<code>第 1 位客户的资产总量 = 1 + 2 + 3 = 6
第 2 位客户的资产总量 = 3 + 2 + 1 = 6
</code>两位客户都是最富有的,资产总量都是 6 ,所以返回 6 。
</pre>
<p><strong>示例 2</strong></p>
<pre><strong>输入:</strong>accounts = [[1,5],[7,3],[3,5]]
<strong>输出:</strong>10
<strong>解释:</strong>
<code>第 1 位客户的资产总量</code> = 6
<code>第 2 位客户的资产总量</code> = 10
<code>第 3 位客户的资产总量</code> = 8
第 2 位客户是最富有的,资产总量是 10</pre>
<p><strong>示例 3</strong></p>
<pre><strong>输入:</strong>accounts = [[2,8,7],[7,1,3],[1,9,5]]
<strong>输出:</strong>17
</pre>
<p> </p>
<p><strong>提示:</strong></p>
<ul>
<li><code>m == accounts.length</code></li>
<li><code>n == accounts[i].length</code></li>
<li><code>1 &lt;= m, n &lt;= 50</code></li>
<li><code>1 &lt;= accounts[i][j] &lt;= 100</code></li>
</ul>
<div><div>Related Topics</div><div><li>数组</li><li>矩阵</li></div></div><br><div><li>👍 53</li><li>👎 0</li></div>