mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 23:48:48 +00:00
P2369 EXCEEDED WARNING A
R41037866
This commit is contained in:
parent
68f6405516
commit
a08205e90c
16
problem/P2369/P2369.cpp
Normal file
16
problem/P2369/P2369.cpp
Normal file
@ -0,0 +1,16 @@
|
||||
#include <bits/stdc++.h>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main() {
|
||||
short a[1000005];
|
||||
int n, m;
|
||||
cin >> n >> m;
|
||||
for (int i = 0; i < n; i++) {
|
||||
cin >> a[i];
|
||||
}
|
||||
sort(a, a + n);
|
||||
for (int i = 0; i < m; i++) {
|
||||
cout << a[i] << endl;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user