#define rep(i,n) for(int i=0;i<(int)(n);i++) #define ALL(v) v.begin(),v.end() typedef long long ll; #include using namespace std; int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); map M; int t; cin>>t; while(t--){ int n0,m,s; cin>>n0>>m>>s; rep(i,m){ string a; cin>>a; M[a]+=s; } } vector> A; for(auto [a,b]:M){ A.push_back({-b,a}); } sort(ALL(A)); int a=A.size(); rep(i,min(a,10)) cout<