题解 | #合并表记录#

合并表记录

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

import java.util.Scanner;
import java.util.TreeMap;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        TreeMap<Integer,Integer> map = new TreeMap<>();
        for(int i=0; i<n; i++){
            int key = sc.nextInt();
            int value = sc.nextInt();
            if(map.containsKey(key)){
                map.put(key, map.get(key)+value);
            }else{
                map.put(key, value);
            }
        }
        for(Integer k: map.keySet()){
            System.out.println(k + " " + map.get(k));
        }
    }
}

全部评论

相关推荐

头像
不愿透露姓名的神秘牛友
05-29 11:22
点赞 评论 收藏
转发
点赞 收藏 评论
分享
牛客网
牛客企业服务