-코드
n, x = map(int, input().split())
arr = list(map(int, input().split()))
for i in arr:
if i < x:
print(i, end=' ')
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 10951번 A+B - 4 (0) | 2021.12.26 |
---|---|
[백준/파이썬] 10950번 A+B - 3 (0) | 2021.12.26 |
[프로그래머스/파이썬] 부족한 금액 계산하기 (0) | 2021.12.26 |
[프로그래머스/파이썬] 콜라츠 추측 (0) | 2021.12.26 |
[프로그래머스/파이썬] x만큼 간격이 있는 n개의 숫자 (0) | 2021.12.26 |