Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 공부
- web
- Spring
- js to ts
- Redux
- 협업
- 분할메모리할당
- Java
- C++
- 백준
- 코드업
- 정렬
- 타입스크립트
- 프로그래머스
- 파이썬
- Operating System
- 리덕스장바구니
- memory
- react-redux
- codeup
- 기초100제
- 토이프로젝트
- 자료구조
- CPU 스케줄링
- 스프링
- 알고리즘
- error
- OS
- react
- 일상
Archives
- Today
- Total
목록18870 (1)
감자튀김 공장🍟
[백준/18870] 좌표 압축 (with 파이썬)
✔ 문제 ✔ 풀이 🙄 틀린 코드 (시간 초과) n = int(input()) nums = list(map(int, input().split())) res = [0] * n for i in range(len(nums)): c = 0 for j in range(len(nums)): if nums[i] > nums[j]: c += 1 res[i] = c print(res) 이중 for문 돌면서 해당 nums[i]보다 작은 수를 count 해서 res 배열에 저장했는데 입력받을 수 있는 수의 범위가 굉장히 크다보니 이중 for문은 시간 초과가 되는 것 같다. 😎 정답 코드 import sys input = sys.stdin.readline n = int(input()) nums = list(map(int, in..
Algorithm/BOJ
2022. 11. 18. 12:18