第一题:X星人 N, W = list(map(int, input().split(' '))) lst = [] res = 0 for n in range(N): line = list(map(int, input().split(' '))) lst.append([line[0],line[1]]) lst.append([line[0],line[1]]) lst.sort(key=lambda x:(-x[1]/x[0],x[0])) i = 0 while True: W -= lst[i][0] if W < 0: br...