Points:
100 (p)
Time limit:
1.0s
Memory limit:
256M
Input:
stdin
Output:
stdout
Cho một dãy gồm \(N\) số nguyên dương \(A_1, A_2,…, A_N\).(\(N ≤ 10^4, A_i ≤ 10^9\)) và số \(K\) (\(K ≤ N\)). Hãy in ra số lớn thứ \(K\) trong dãy.
Input
- Dòng đầu chứa số \(N, K\),
- Dòng thứ hai chứa \(N\) số nguyên dương \(A_1, A_2,…, A_N\).
Output
- Một dòng chứa dãy số lớn thứ \(K\) trong dãy.
Example
Test 1
Input
6 2
91 451 43 3 452 54
Output
451
Comments
sân si, pepsi
bớt đăng code đi...
n,k = map(int,input().split())
a = list(map(int,input().split()))
a.sort(reverse=True)
print(a[k-1])
This comment is hidden due to too much negative feedback. Click here to view it.
Code C++ Cho ai cần:
m
This comment is hidden due to too much negative feedback. Click here to view it.
This comment is hidden due to too much negative feedback. Click here to view it.
Small anh có thể tăng time tầm 4-5s cho scratch được không ạ?
Bài này là nhập K luôn hay s hả mn
1 more comment