일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 알고리즘
- git pull
- 딥다이브
- 자바스크립트
- let
- Queue
- Python
- BOJ
- Deep Dive
- 실행 컨텍스트
- Javascript
- var
- blockchain
- solidity
- frontend
- 블록체인
- nft
- 솔리디티
- 클로저
- react
- 리액트
- Algorithm
- Execution context
- 변수
- 정렬
- 파이썬
- 함수
- 백준
- 프로퍼티
- Interview
Archives
- Today
- Total
목록countingSort (1)
공부하자
[BOJ/Python] 10989. 수 정렬하기 3
문제 N개의 수가 주어졌을 때, 이를 오름차순으로 정렬하는 프로그램을 작성하시오. 첫째 줄에 수의 개수 N(1 ≤ N ≤ 10,000,000)이 주어진다. 둘째 줄부터 N개의 줄에는 수가 주어진다. 이 수는 10,000보다 작거나 같은 자연수이다. 첫째 줄부터 N개의 줄에 오름차순으로 정렬한 결과를 한 줄에 하나씩 출력한다. # 메모리 초과 n = int(input()) array = [0] * (n + 1) data = [] for i in range(n): data.append(int(input())) array[data[i]] += 1 for i in range(len(array)): for j in range(array[i]): print(i) n = int(sys.stdin.readline())..
Algorithm/BOJ
2022. 4. 22. 00:16