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
- 사물인식
- AWS
- 솝트
- jQuery
- 카카오
- 멋사
- Python
- 백준
- 서류전형
- 솝트 후기
- MongoDB
- 멋쟁이사자처럼
- 인공지능
- 피로그래밍
- CRUD
- 페이지네이션
- 파이썬
- nodejs
- S3
- 파이썬 #백준 #BFS
- EC2
- jwt
- Java
- 프로그래머스
- objectdetection
- spring-boot
- 면접전형
- 합격후기
- yolov5
- 절차지향
Archives
- Today
- Total
찔끔찔끔씩😎
[백준] 7568번 덩치- python 본문
728x90
https://www.acmicpc.net/problem/7568
문제
학생 각각의 몸무게, 키 보다 몸무게, 키가 둘다 큰 학생의 수를 출력한다.
코드
n = int(input())
people = []
for _ in range(n):
w, h = map(int, input().split())
people.append((w, h))
answer = [1] * n
for i in range(n):
w, h = people[i][0],people[i][1]
for j in range(n):
if w < people[j][0] and h < people[j][1]:
answer[i] += 1
for i in answer:
print(i,end=' ')
'Algorithm > 백준' 카테고리의 다른 글
[백준] 1436번 영화감독 숌- python (0) | 2021.11.13 |
---|---|
[백준] 1018번 체스판 다시 칠하기- python (0) | 2021.11.13 |
[백준] 2231번 분해합- python (0) | 2021.11.11 |
[백준] 2798번 블랙잭 - python (0) | 2021.11.11 |
[백준] 15686번 치킨 배달 - python (0) | 2021.11.10 |
Comments