https://www.acmicpc.net/problem/11652문제해석 첫 번째 줄에 N을 입력한다.이후 두번째 줄부터 N+1째 줄에는 숫자 카드에 적혀있는 정수를 입력한다.입력받은 정수 중 가장 많이 나온 정수를 출력한다.(단, 가장 많이 나온 정수의 수가 같은게 있다면, 더 작은 정수를 출력한다.) 코드 #include using namespace std;unordered_map hash_map;long long Key, result = 0;int N;int main(){ cin >> N; for (int i = 0; i > Key; hash_map[Key]++; } vector> vec(hash_map.begin(), hash_map.end()); sort..