[python] 백준 10871 X보다 작은 수

rse·2022년 11월 28일
0

알고리즘

목록 보기
15/44
post-custom-banner

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 = " ")

profile
기록을 합시다

0개의 댓글