//https://www.acmicpc.net/problem/10989 #include <iostream> | |
#include <stdio.h> | |
using namespace std; | |
int num[10001]; | |
int main(){ | |
int n; | |
scanf("%d",&n); | |
int input; | |
for(int i=0; i<n; ++i){ | |
scanf("%d",&input); | |
num[input]++; | |
} | |
for(int i=1; i<=10000; ++i){ | |
while(num[i]-->0){ | |
printf("%d\n", i); | |
} | |
} | |
return 0; | |
} |
sort만 이용하다가 허를 찔렸넹
'알고리즘 문제 풀이 > 1DP_과제(~180615)' 카테고리의 다른 글
180423_11650_좌표 정렬하기 (0) | 2018.04.23 |
---|---|
180423_1181_단어 정렬 (0) | 2018.04.23 |
180423_1427_소트인사이드 (0) | 2018.04.23 |
180423_1026_보물 (0) | 2018.04.23 |
180423_2747_피보나치 수 (0) | 2018.04.23 |