#include using namespace std; #pragma GCC optimize("O3") #define rep(i,n) for(ll i=0;i=0;i--) #define perl(i,r,l) for(ll i=r-1;i>=l;i--) #define fi first #define se second #define pb push_back #define ins insert #define pqueue(x) priority_queue,greater> #define all(x) (x).begin(),(x).end() #define CST(x) cout<> #define rev(x) reverse(x); using ll=long long; using vl=vector; using vvl=vector>; using pl=pair; using vpl=vector; using vvpl=vector; const ll MOD=1000000007; const ll MOD9=998244353; const int inf=1e9+10; const ll INF=4e18; const ll dy[9]={0,1,0,-1,1,1,-1,-1,0}; const ll dx[9]={1,0,-1,0,1,-1,1,-1,0}; template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } /*pl add(pl a,pl b){ ll f=a.first*b.second+a.second*b.first,g=a.second*b.second; ll k=gcd(f,g); return make_pair(f/k,g/k); }*/ int main(){ ll n;cin >> n; vvpl lin(3); rep(i,n){ ll k,a,b;cin >> k >> a >> b; lin[k].emplace_back(make_pair(a,a+b)); } rep(i,3)lin[i].emplace_back(make_pair(1,1)); rep(i,3){ sort(all(lin[i]),[](pl a,pl b){return a.first*b.second