-Code
n, h = map(int, input().split())
cnt = 0
for a in list(map(int, input().split())):
if a <= h:
cnt += 1
print(cnt)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 30642번 아이그루스와 화장실 (0) | 2023.11.24 |
---|---|
[백준/파이썬] 25829번 Presidential Election (1) | 2023.11.23 |
[백준/파이썬] 10185번 Focus (1) | 2023.11.21 |
[백준/파이썬] 30684번 모르고리즘 회장 정하기 (1) | 2023.11.20 |
[백준/파이썬] 30676번 이 별은 무슨 색일까 (0) | 2023.11.19 |