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
- Backtracking
- DFS
- 프로그래머스
- 그리디알고리즘
- 덩치
- 404에러
- 통계학
- 코딩테스트
- sort
- Python
- 2중포문
- 정렬
- 스택
- 최빈값
- 파이썬
- 백준
- 최단거리
- 백트래킹
- 브루트포스
- 스프링
- 동적계획법
- 동적
- 코테
- 소트인사이드
- 그리디
- 월간 코드 챌린지 시즌2
- 다익스트라
- 퇴각검색
- 소트
- 스프링프레임워크
Archives
- Today
- Total
취준생의 코딩테스트 연습기
[백준] 10816번 숫자 카드 2 / 파이썬(python) 본문
# 문제 링크
https://www.acmicpc.net/problem/10816
# Soultion
간단하게 bisect함수를 이용하여 문제를 풀었다.
1
2
3
4
5
6
7
8
9
|
from bisect import bisect_right, bisect_left
n = int(input())
li_n = sorted(list(map(int,input().split())))
m = int(input())
li_m = list(map(int,input().split()))
for i in li_m:
print(bisect_right(li_n,i) - bisect_left(li_n,i),end=' ')
|
cs |
'코딩테스트 > 백준' 카테고리의 다른 글
[백준] 1463번 1로 만들기 / 파이썬(python) (0) | 2021.05.23 |
---|---|
[백준] 1149번 RGB거리 / 파이썬(python) (0) | 2021.05.23 |
[백준] 1920번 수 찾기 / 파이썬(python) (0) | 2021.05.21 |
[백준] 1697번 숨바꼭질 / 파이썬(python) (0) | 2021.05.21 |
[백준] 7569번 토마토 / 파이썬(python) (0) | 2021.05.20 |
Comments