https://www.acmicpc.net/problem/10871
풀이
N, X = map(int, input().split())
A = list(map(int, input().split()))
for i in A:
if i < X:
print(i, end=" ")
'Python > Baekjoon' 카테고리의 다른 글
백준 10951번 : A+B - 4 (0) | 2022.10.06 |
---|---|
백준 10952번 : A+B - 5 (0) | 2022.10.06 |
백준 2439번 : 별 찍기 - 2 (0) | 2022.10.06 |
백준 2438번 : 별 찍기 - 1 (0) | 2022.10.06 |
백준 11022번 : A+B - 8 (0) | 2022.10.06 |