// 6'22"
#include <bits/stdc++.h>
using namespace std;
int main()
{
int n;
cin >> n;
map<int,int> hash;
for(int i = 1; i <= n; ++ i)
{
int k;
cin >> k;
for(int j = 1; j <= k; ++ j)
{
int tmp;
cin >> tmp;
hash[tmp] ++;
}
}
int max = -114514;
int num = -114514;
for(auto h : hash)
{
if(h.second > max || (h.second == max && h.first > num))
{
max = h.second;
num = h.first;
}
}
cout << num << " " << max;
return 0;
}
L1-034 點贊 分數 20
相關文章
- L1-034 點贊 pythonPython
- 6-7 奇數值結點連結串列 (20 分)
- 《熱血傳奇》20週年 全媒體點贊網遊鼻祖
- 1019 數字黑洞 (20 分)javaJava
- 7-6 黑洞數(20 分)
- 7-45 找完數(20 分)
- L1-095 分寢室 分數 20
- Redis高效實現點贊、取消點贊只需這四步Redis
- 1013 數素數 (20分)/c++實現C++
- L1-056 猜數字 分數 20
- 微信小程式實現點贊、取消點贊,和多項點選功能微信小程式
- 給上海民警點贊
- L1-027 出租 分數 20
- PTA:先序輸出葉結點 (20分)
- 1002 寫出這個數 (20 分)javaJava
- 通用點贊設計思路
- Flutter仿掘金點贊效果Flutter
- L1-080 乘法口訣數列 分數 20
- L1-104 九宮格 分數 20
- L1-059 敲笨鍾 分數 20
- L1-023 輸出GPLT 分數 20
- L1-071 前世檔案 分數 20
- L1-072 刮刮彩票 分數 20
- L1-043 閱覽室 分數 20
- L1-039 古風排版 分數 20
- B1002 寫出這個數 (20分)
- 仿抖音點贊按鈕
- Android 自定義View 點贊效果AndroidView
- 微擎 微贊 微盟 有贊 點點客微信介面對比哪個好
- android短視訊開發,實現動態點贊出現的點贊動畫Android動畫
- 點贊功能模組-獲取使用者詳情與點贊過的歷史文章
- L1-056 猜數字 (20分) C++C++
- L1-020 帥到沒朋友 分數 20
- Instagram隱藏“點贊”數另有隱情 刺激使用者多發帖
- React Native 仿抖音點贊特效React Native特效
- Redis實現點贊功能模組Redis
- 7-20 二分法求函式的零點 (10分)函式
- 6-8 單連結串列結點刪除 (20 分)