일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 순열
- 안드로이드
- 앱
- 코테
- Combination
- 홈화면
- expo
- 1260
- 파이썬
- 백준
- lcm
- Kotlin
- itertools
- Android
- permutation
- 코틀린
- 매일11시
- 괄호
- 나머지
- 1182
- 11057
- 최소공배수
- 뒤로가기
- 11053
- Python
- 9095
- 6603
- 11054
- 11기
- LCS
Archives
- Today
- Total
황소개발자
백준 7568 파이썬 python : 덩치 @@황소처럼 우직하게@@ 본문
반응형
혹시나 시간초과가 나면 어쩔까 했는데
시간복잡도 n^2 으로 풀어도 괜찮다.
import sys
r = sys.stdin.readline
people = []
n = int(r())
for i in range(n):
x, y = map(int, r().split())
people.append([x, y])
for i in range(n):
total = 1
for j in range(n):
if i == j:
continue
if people[j][0] > people[i][0] and people[j][1] > people[i][1]:
total += 1
print(total, end=" ")
이런 단순한 문제를 보면 시간초과 공포증이 있다;;
TIME LIMIT POBIA
반응형
'백준 문제 풀이' 카테고리의 다른 글
백준 14499 파이썬 python : 주사위 굴리기 @@황소처럼 우직하게@@ 깔끔하게 풀기 (0) | 2020.02.26 |
---|---|
백준 13458 파이썬 python : 시험감독 @@황소처럼 우직하게@@ (0) | 2020.02.26 |
백준 2231 파이썬 python : 분해합 @@황소처럼 우직하게@@ (0) | 2020.02.23 |
백준 1753 파이썬 python : 최단경로 @@황소처럼 우직하게@@ (0) | 2020.02.22 |
백준 6603 파이썬 python : 독일 로또 @@황소처럼 우직하게@@ 조합 itertools combinations permutation 사용법 + 런타임에러 해결 (0) | 2020.02.21 |
Comments