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 |
Tags
- Programmers
- pytest
- ws
- stack&que
- Stack
- combinations
- stateful
- Unit Testing
- Q objects
- AWS
- HTTP 완벽 가이드
- SQL
- 백준
- TDD
- was
- postreSQL
- Bruteforce
- dictionary
- greedy
- Gunicorn
- ORM
- algorithm
- codecov
- permutations
- stateless
- Python
- utils
- Django
- Git
- Query
Archives
- Today
- Total
해피 코딩!
[백준] 덩치 7568번 본문
link
length = int(input())
lst = [0]* length
stack = [0] * length
# 모든 값을 넣은다.
for index, value in enumerate(lst):
weight, height = map(int, input().split(' '))
lst[index] = weight, height
# 비교
for index, value in enumerate(lst):
rank = 1
for indent_1, indent_1_value in enumerate(lst):
if index == indent_1:
continue
if (value[0] < indent_1_value[0]) and (value[1] <indent_1_value[1]):
rank+=1
stack[index] = rank
for word in stack:
print(word, end=' ')
'알고리즘' 카테고리의 다른 글
[백준] 영화감독 숌 1436번 (0) | 2020.12.12 |
---|---|
[백준] 블랙잭 2798번 (0) | 2020.12.12 |
[프로그래머스] 프린터 (0) | 2020.12.12 |
[프로그래머스] 주식가격 (0) | 2020.12.12 |
[프로그래머스] 완주하지 못한 선수 (0) | 2020.12.12 |
Comments