백준 #10989
백준 알고리즘 10989번 문제
문제 : https://www.acmicpc.net/problem/10989
C++ 풀이 :
#include <iostream>
using namespace std;
int arr[10001] = {0};
int main()
{
int N;
cin >> N;
for(int i = 0; i < N; i++){
int num;
cin >> num;
arr[num]++;
}
for (int i = 1; i < 10001; i++){
for(int j = 0; j < arr[i]; j++)
cout << i << endl;
}
return 0;
}
// 입력한 숫자를 배열 index로 입력 > 자동으로 오름차순 정렬 > 오름차순 출력
Author And Source
이 문제에 관하여(백준 #10989), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@purangi_code/백준-10989저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)