题解 | #合并表记录#

合并表记录

https://www.nowcoder.com/practice/de044e89123f4a7482bd2b214a685201

import java.util.Scanner;

import java.util.TreeMap;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
                Scanner sc = new Scanner(System.in);
        while (sc.hasNext()){
            int N = Integer.parseInt(sc.nextLine());
            TreeMap<Integer,Integer> map = new TreeMap<>();
            for (int i = 0; i < N; i++) {
                String str = sc.nextLine();
                String[] inputArr = str.split(" ");
                map.put(Integer.parseInt(inputArr[0]),map.getOrDefault(Integer.parseInt(inputArr[0]),0)+Integer.parseInt(inputArr[1]));
            }

            for (Integer key: map.keySet()
                 ) {
                System.out.println(key + " " + map.get(key));
            }
        }
    }
}

全部评论

相关推荐

哞客37422655...:兄弟别慌!💪 民办本找实习确实难点,但不是没机会。100+简历才2个面试,可能简历需要优化下: 项目经历写具体点,突出测试用例、bug数量等 技能栏把测试工具/方法论写清楚 可以考虑降低预期,先进小厂积累经验 测试岗相对好进,坚持投!现在才半个月,有人投3个月才上岸的😭 加油,offer在路上了🚀
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务