从大到小的顺序输出其中前m大的数 摘要:解题思路:注意事项:参考代码:n,m = map(int,input().split())L = list(map(int,input().split()))L.sort(reverse = True…… 题解列表 2023年01月14日 0 点赞 0 评论 70 浏览 评分:0.0
2059——————sort练习 摘要: n,m = map(int,input().split()) s = sorted(list(map(int,input().split())))[::-1] for i …… 题解列表 2022年07月17日 0 点赞 0 评论 238 浏览 评分:0.0
[STL训练]sort练习-题解(各语言代码) 摘要:**python** ```python from heapq import nlargest print(*nlargest(int(input().split()[1]),map(int,i…… 题解列表 2022年04月01日 0 点赞 0 评论 232 浏览 评分:0.0
2059: [STL训练]sort练习 摘要:解题思路:注意事项:参考代码:n,m = map(int,input().split()) lis = list(map(int,input().split())) lis.sort(revers…… 题解列表 2022年01月12日 0 点赞 0 评论 230 浏览 评分:0.0