Python成绩排名 摘要:解题思路:注意事项:list.sort(key=lambda x:(x[0],-x[1])) # 先按第一个返回值排序,排序完成之后, 如果第一个返回值相等,然后再按照第二个返回值排序参考代码:n=i…… 题解列表 2023年02月09日 0 点赞 0 评论 50 浏览 评分:0.0
2256: 蓝桥杯算法提高-成绩排名 摘要:解题思路:注意事项:参考代码:n=int(input()) d=[] for i in range(n): a,b=map(str,input().split()) …… 题解列表 2022年02月11日 0 点赞 1 评论 140 浏览 评分:9.9
编写题解 2256: 蓝桥杯算法提高-成绩排名(python) 摘要:解题思路:注意事项:参考代码:a=int(input())t={}for i in range(0,a): x=input().split() t[x[0]]=int(x[1])a=sor…… 题解列表 2022年01月12日 0 点赞 0 评论 156 浏览 评分:0.0