1672:最富有客户的资产总量
This commit is contained in:
parent
1a41f1a398
commit
b21dde85fc
71
src/main/java/leetcode/editor/cn/RichestCustomerWealth.java
Normal file
71
src/main/java/leetcode/editor/cn/RichestCustomerWealth.java
Normal 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)
|
||||
|
||||
}
|
@ -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 <= m, n <= 50</code></li>
|
||||
<li><code>1 <= accounts[i][j] <= 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>
|
Loading…
Reference in New Issue
Block a user