๋ฐ์ํ
// Authored by : seondal
// Co-authored by : -
// #include <bits/stdc++.h>
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main() {
ios_base::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
int n;
cin >> n;
vector<int> v(n);
for(int i=0; i<n; i++)
cin >> v[i];
sort(v.begin(), v.end(), greater<>{});
for(int i=0; i<n; i++)
cout << v[i] << "\n";
return 0;
}
/*
*/
๋ฐ์ํ
'๐๏ธ ICPC Sinchon' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[BOJ][C++] ๋ฐฑ์ค 1427๋ฒ: ์ํธ์ธ์ฌ์ด๋ (0) | 2023.01.11 |
---|---|
[BOJ S5][C++] ๋ฐฑ์ค 10814: ๋์ด์ ์ ๋ ฌ (0) | 2023.01.11 |
[BOJ][C++] ๋ฐฑ์ค 2751๋ฒ: ์ ์ ๋ ฌํ๊ธฐ 2 (0) | 2023.01.11 |
[C++][BOJ] ๋ฐฑ์ค 2210๋ฒ: ์ซ์ํ ์ ํ (0) | 2021.08.18 |
[C++][BOJ] ๋ฐฑ์ค 21316๋ฒ: ์คํผ์นด (0) | 2021.08.11 |