1391基础解法(Python) 摘要:解题思路:注意事项:参考代码:import sysfor line in sys.stdin: line = list(map(int,line[1:].split())) line.so…… 题解列表 2022年11月18日 0 点赞 0 评论 91 浏览 评分:9.9
1391——————震宇大神的杀毒软件 摘要: while True: n=list(map(int,input().split())) n.pop(0) n.sort(reverse=…… 题解列表 2022年09月08日 0 点赞 0 评论 118 浏览 评分:0.0
思路简单清晰的解法 摘要:解题思路:看过python列表操作的小伙伴应该都能看得懂注意事项:参考代码:while True: l1 = list(map(int, input().split())) l1.pop(…… 题解列表 2022年08月10日 0 点赞 0 评论 123 浏览 评分:0.0
注意换行和列表清空 摘要:解题思路:注意事项:参考代码:while True: a=list(map(int,input().split())) a=a[1:] b=sorted(a,reverse=True…… 题解列表 2022年04月06日 0 点赞 0 评论 152 浏览 评分:0.0
1391: 震宇大神的杀毒软件 摘要:解题思路:注意事项:参考代码:while True: try: a=list(map(int,input().strip().split())) b = a[1:] b.sort(reverse…… 题解列表 2022年01月26日 0 点赞 0 评论 181 浏览 评分:0.0
简单python走起 摘要:解题思路:注意事项:参考代码:while True: mas=list(map(int,input().split())) mas.pop(0) mas.sort(reverse=T…… 题解列表 2021年04月07日 0 点赞 0 评论 156 浏览 评分:0.0