python最大配对简单解法 摘要:B=[]n=int(input())A=list(map(int,input().split()))A.sort() #正序排序(小到大)b=list(map(int,input().split()…… 题解列表 2023年02月02日 0 点赞 0 评论 107 浏览 评分:0.0
最大配对——python 摘要:解题思路:注意事项:参考代码:n = int(input())L1 = list(map(int,input().split()))L2 = list(map(int,input().split())…… 题解列表 2023年04月06日 0 点赞 0 评论 69 浏览 评分:0.0
小白随便写的,记录一下 摘要:```python def max_join(a, b, n): a.sort() b.sort(reverse=True) max_join = 0 # 记录最大配…… 题解列表 2024年03月26日 0 点赞 0 评论 103 浏览 评分:0.0
1286基础解法(Python) 摘要:解题思路:最大-最小注意事项:合理运用数据类型简化处理难度参考代码:m = int(input())lst_1 = sorted(map(int, input().split()))lst_2 = s…… 题解列表 2023年03月10日 0 点赞 0 评论 112 浏览 评分:9.9