当前位置:网站首页>1672. 最富有客户的资产总量
1672. 最富有客户的资产总量
2022-07-04 17:39:00 【charlsdm】
- 最富有客户的资产总量
给你一个 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
下边附上我的代码
public class Solution {
public int MaximumWealth(int[][] accounts) {
int min = -1;
int row = accounts.GetLength(0);
int[] sum = new int[row];
for(int i=0;i<row;i++)
{
for(int j=0;j<accounts[i].Length;j++)
{
sum[i] += accounts[i][j];
}
}
for(int i=0;i<row;i++)
{
if(sum[i]>min)
{
min = sum[i];
}
}
return min;
}
}
边栏推荐
- Deleting nodes in binary search tree
- 学习路之PHP--phpstudy创建项目时“hosts文件不存在或被阻止打开”
- 力扣刷题日记/day2/2022.6.24
- [uniapp] uniapp development app online Preview PDF file
- Mxnet implementation of googlenet (parallel connection network)
- Improve the accuracy of 3D reconstruction of complex scenes | segmentation of UAV Remote Sensing Images Based on paddleseg
- Digital "new" operation and maintenance of energy industry
- 6.26cf simulation match B: solution to array reduction problem
- Torchdrug tutorial
- [go language question brushing chapter] go conclusion chapter | introduction to functions, structures, interfaces, and errors
猜你喜欢
奥迪AUDI EDI INVOIC发票报文详解
基于unity的愤怒的小鸟设计
Go微服务(二)——Protobuf详细入门
【2022年江西省研究生数学建模】冰壶运动 思路分析及代码实现
Nebula Importer 数据导入实践
ByteDance dev better technology salon was successfully held, and we joined hands with Huatai to share our experience in improving the efficiency of web research and development
一、C语言入门基础
Li Kou brush question diary /day3/2022.6.25
Learning path PHP -- phpstudy "hosts file does not exist or is blocked from opening" when creating the project
每日一题(2022-07-02)——最低加油次数
随机推荐
Interpretation of SIGMOD '22 hiengine paper
神经网络物联网应用技术学什么
输入的查询SQL语句,是如何执行的?
Li Kou brush question diary /day6/6.28
Scala basic tutorial -- 17 -- Collection
工厂从自动化到数字孪生,图扑能干什么?
6.26CF模拟赛E:价格最大化题解
大佬们,求助一下,我用mysql cdc 2.2.1(flink 1.14.5)写入kafka,设置
Li Kou brush question diary /day2/2022.6.24
Scala basic tutorial -- 14 -- implicit conversion
力扣刷题日记/day3/2022.6.25
从实时应用角度谈通信总线仲裁机制和网络流控
Scala基础教程--14--隐式转换
力扣刷题日记/day2/2022.6.24
自由小兵儿
Angry bird design based on unity
A method of using tree LSTM reinforcement learning for connection sequence selection
Learning path PHP -- phpstudy "hosts file does not exist or is blocked from opening" when creating the project
NBA赛事直播超清画质背后:阿里云视频云「窄带高清2.0」技术深度解读
千万不要只学 Oracle、MySQL!