首页 > 匹配星星
头像 PIPERAS
发表于 2026-04-27 15:55:28
#include <iostream> #include <vector> #include <algorithm> #include <set> using namespace std; struct Star { int x, y, z 展开全文
头像 小乌鱼
发表于 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 展开全文