일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 11053
- 백준
- 코틀린
- 1182
- 나머지
- 앱
- Combination
- expo
- LCS
- itertools
- 매일11시
- Android
- lcm
- 11057
- 최소공배수
- 11기
- 1260
- 괄호
- 9095
- 뒤로가기
- 11054
- Python
- 파이썬
- permutation
- 코테
- 순열
- 6603
- 홈화면
- Kotlin
- 안드로이드
Archives
- Today
- Total
목록덩치 (1)
황소개발자
백준 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
백준 문제 풀이
2020. 2. 23. 13:31