209教室10号


私信TA

用户名:uq_45780836278

访问量:5

签 名:

等  级
排  名 36491
经  验 418
参赛次数 2
文章发表 1
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

将所有信息存放至二维数组并依据总分,语文成绩降序排序,依据学号升序排序

注意事项:

参考代码:

def scholarship_ranking():
   # 读取学生数量
   n = int(input().strip())

   # 初始化二维数组
   students = []

   for i in range(1, n + 1):
       # 读取每行学生的三科成绩
       scores = list(map(int, input().strip().split()))
       # 计算总分并保存到二维数组
       total = sum(scores)
       students.append([i, scores[0], scores[1], scores[2], total])  # (学号, 语文, 数学, 英语, 总分)

   # 排序
   # 根据总分降序排序,语文成绩降序排序,学号升序排序
   students.sort(key=lambda x: (-x[4], -x[1], x[0]))

   # 输出前五名学生的学号和总分
   for student in students[:5]:
       print(student[0], student[4])


if __name__ == "__main__":
   scholarship_ranking()

 

0.0分

0 人评分

  评论区

  • «
  • »