首页 > 匹配星星
头像 小乌鱼
发表于 2026-03-12 16:33:46
import bisect import sys n = int(input()) stars = [] for i in range(n): x, y, z = map(int, input().split()) stars.append((x, y, z)) stars.sort 展开全文