지나가던 개발자

[Python] 백준 10871번(X보다 작은 수) 문제 풀이 본문

PS/Python

[Python] 백준 10871번(X보다 작은 수) 문제 풀이

KwonYongHyeon 2022. 1. 11. 20:50

 

 X와 수열 A를 입력받아 A 중 X보다 작은 수를 출력하는 문제이다.

 

x = list(map(int, input().split()))[1]
a = list(map(int, input().split()))
output = []
for i in range(len(a)):
    if a[i] < x:
        output.append(a[i])
print(" ".join(map(str, output)))
Comments