朱扬宇


私信TA

用户名:uq_98682061445

访问量:317

签 名:

3212052051354

等  级
排  名 4498
经  验 1694
参赛次数 0
文章发表 9
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;

class Student {
    int id;
    int score;

    public Student(int id, int score) {
        this.id = id;
        this.score = score;
    }
}

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt() + scanner.nextInt();

        List<Student> students = new ArrayList<>();

        for (int i = 0; i < n; i++) {
            int id = scanner.nextInt();
            int score = scanner.nextInt();
            students.add(new Student(id, score));
        }
        // 排序学生信息
        Collections.sort(students, Comparator.comparingInt(student -> student.id));

        // 打印排序后的学生信息
        for (Student student : students) {
            System.out.println(student.id + " " + student.score);
        }
    }
}
import java.util.Scanner;
import java.util.TreeMap;

public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt() + scanner.nextInt();
        TreeMap<Integer, Integer> treeMap = new TreeMap<>();
        for(int i=0;i<n;i++){
          treeMap.put(scanner.nextInt(), scanner.nextInt());
        }

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


 

0.0分

0 人评分

新上线《蓝桥杯辅导》课程,近五年的蓝桥杯省赛与国赛真题都有,从读题开始理解题意、梳理思路、实现代码再提交评测全过程,可有效提升获奖比例甚至进国赛!课程介绍、试听请猛击这里

  评论区

  • «
  • »