Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- leetcode
- 자연어처리
- programmers
- AI 경진대회
- dacon
- 캐치카페
- 코로나19
- SW Expert Academy
- ChatGPT
- gs25
- ubuntu
- 금융문자분석경진대회
- github
- 맥북
- Docker
- Kaggle
- 파이썬
- Baekjoon
- 프로그래머스 파이썬
- PYTHON
- Real or Not? NLP with Disaster Tweets
- 더현대서울 맛집
- 우분투
- 편스토랑 우승상품
- 편스토랑
- 데이콘
- 백준
- hackerrank
- 프로그래머스
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 18870번 : 좌표압축 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 좌표압축입니다.
Solution
from collections import Counter
numbers = int(input())
inputNums = []
inputNums = list(map(int, input().split()))
cnt_items = sorted(Counter(inputNums).items(), key = lambda x: x[0])
rank_dict = dict()
for i in range(len(cnt_items)):
rank_dict[cnt_items[i][0]] = i
for number in inputNums:
print(rank_dict[number])
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 2675번 : 문자열 반복 (Python) (0) | 2021.04.08 |
---|---|
[BaekJoon] 11654번 : 아스키 코드 (Python) (0) | 2021.04.08 |
[BaekJoon] 11720번 : 숫자의 합 (Python) (0) | 2021.04.05 |
[BaekJoon] 3052번 : 나머지 (Python) (0) | 2021.04.04 |
[Programmers] 멀리뛰기 (Python) (0) | 2021.03.27 |
Comments