Gửi bài giải
Điểm:
1,00 (OI)
Giới hạn thời gian:
1.0s
Giới hạn bộ nhớ:
256M
Input:
stdin
Output:
stdout
Nguồn bài:
Dạng bài
Ngôn ngữ cho phép
C, C++, Java, Kotlin, Pascal, PyPy, Python, Scratch
Given ~n~ integers which the absolute value of each is not over ~10^{18}~, output ~k~ greatest elements.
Input
The first line contains two integers ~n~ and ~k~ (~k~ ≤ ~n~ ≤ ~10^{5}~).
The second lines contains ~n~ integers.
Output
- A single line contains ~k~ greatest integers in descending order.
Sample Input:
5 3
1 6 5 0 7
Sample Output:
7 6 5
Bình luận