๋ฐ์ํ
https://www.acmicpc.net/problem/1427
// Authored by : seondal
// Co-authored by : -
// #include <bits/stdc++.h>
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
typedef pair<int, string> ci;
int main() {
ios_base::sync_with_stdio(false); cin.tie(NULL);
string input;
cin >> input;
sort(input.begin(), input.end(), greater<>{});
cout << input;
return 0;
}
/*
*/
๋ฐ์ํ
'๐๏ธ ICPC Sinchon' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[BOJ][C++] ๋ฐฑ์ค 17608๋ฒ: ๋ง๋๊ธฐ (0) | 2023.01.17 |
---|---|
[BOJ S3][C++] ๋ฐฑ์ค 24511๋ฒ: queuestack (์๊ฐ์ด๊ณผ๋ฅผ ํด๊ฒฐํด๋ณด์) (0) | 2023.01.13 |
[BOJ S5][C++] ๋ฐฑ์ค 10814: ๋์ด์ ์ ๋ ฌ (0) | 2023.01.11 |
[BOJ][C++] ๋ฐฑ์ค 11931๋ฒ: ์ ์ ๋ ฌํ๊ธฐ 4 (0) | 2023.01.11 |
[BOJ][C++] ๋ฐฑ์ค 2751๋ฒ: ์ ์ ๋ ฌํ๊ธฐ 2 (0) | 2023.01.11 |