10989번: 수 정렬하기3(백준 C++) 10989번: 수 정렬하기3 링크 코드 #include #include using namespace std; int main(){ ios:: sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); int n; int temp; cin >> n; int arr[10000] = {0}; for(int i=0; i> temp; arr[temp-1] += 1; } for(int i=0; i 공부/백준 2020.10.29