728x90
반응형
단순 구현 문제이다.
w, n, p = map(int, input().split())
li = list(map(int, input().split()))
cnt = 0
for h in li:
if w <= h <= n:
cnt += 1
print(cnt)
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 10270번 Algebraic Teamwork(python) (0) | 2021.02.19 |
---|---|
백준 알고리즘 10395번 Automated Checking Machine(python) (0) | 2021.02.19 |
백준 알고리즘 10409번 서버(python) (0) | 2021.02.19 |
백준 알고리즘 10539번 수빈이와 수열(python) (0) | 2021.02.19 |
백준 알고리즘 10480번 Oddities(python) (0) | 2021.02.19 |