凉得挺惨的,但还是想交流一下编程题第一题和最后一题SQL怎么写。 第一题我的通过率是36%,不知道哪里有问题 while True: try: n=int(input()) l=[] for _ in range(n): s=input().split(" ") l.append([s[0],int(s[1]),s[2]]) l.sort(key=lambda x:x[1], reverse=False) for item in ...