본문 바로가기

코딩 테스트

백준 11004

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	int n, k;

	cin >> n >> k;
	vector<int> nums;

	for (int i = 0; i < n; ++i)
	{
		int num;
		cin >> num;
		nums.push_back(num);
	}
	sort(nums.begin(), nums.end());

	cout << nums[k-1];

	return 0;
}

'코딩 테스트' 카테고리의 다른 글

프로그래머스 - 네트워크 (bfs, dfs or union-find)  (0) 2024.07.26
백준 1246  (0) 2024.06.12
백준 네번째점  (1) 2024.06.11
백준 회전하는 큐  (0) 2024.06.11
귤 고르기  (0) 2024.05.20