1427 C++1 1427) 소트인사이드 (C++) 출처 https://www.acmicpc.net/problem/1427 1427번: 소트인사이드 첫째 줄에 정렬하려고 하는 수 N이 주어진다. N은 1,000,000,000보다 작거나 같은 자연수이다. www.acmicpc.net 내 풀이 #include #include #include using namespace std; string input = " "; vector v;//결과값 int main() { //혹시 모를 시간 초과 때문에 선언 ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cin >> input; for (int i = 0; i < input.length(); i++) { v.push_back(input[i]); } sort(.. 2022. 5. 8. 이전 1 다음