K greatest numbers

Xem dạng PDF

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:
Ha Minh Ngoc
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

Hãy đọc nội quy trước khi bình luận.


Không có bình luận tại thời điểm này.