菜鸡1号


私信TA

用户名:uq_69651989863

访问量:1472

签 名:

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

  自我简介:

解题思路:

注意事项:

参考代码:

def sort_students(students):

    students.sort(key=lambda x: (x[2], x[0], x[1]))

    return students


# 读取输入数据

while True:

    try:

        n = int(input())

        students = []

        for _ in range(n):

            name, age, score = input().split()

            students.append((name, int(age), int(score)))


        # 调用排序函数

        sorted_students = sort_students(students)


        # 输出结果

        for student in sorted_students:

            name, age, score = student

            print(name, age, score)


    except EOFError:

        break


 

0.0分

0 人评分

  评论区

  • «
  • »