배운것
reverse 함수
reverse(st.begin(), st.end());
stoll() : string to longlong
v.push_back(stoll(st));
정답 풀이
// Authored by : std-freejia
// Co-authored by : -
// http://boj.kr/c56909c54c4f4e9fb2c987a6eb3b96ee
#include <bits/stdc++.h>
using namespace std;
int n;
string st;
vector<long long> v;
int main(void) {
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n;
for(int i = 0; i < n; i++) {
cin >> st;
reverse(st.begin(), st.end());
v.push_back(stoll(st));
}
sort(v.begin(), v.end());
for(auto i : v) cout << i << '\n';
return 0;
}
'Algorithm > C++' 카테고리의 다른 글
[백준 9095] 1,2,3 더하기 (0) | 2022.09.28 |
---|---|
[백준 1463] 1로 만들기 (0) | 2022.09.28 |
[백준 2146] 다리 만들기 (0) | 2022.09.27 |
[백준 11652] 카드 (0) | 2022.09.26 |
[백준 2573] 빙산 (0) | 2022.09.26 |
댓글