알고리즘/배열(array)

백준 10871 python

자코린이 2023. 6. 9. 10:35
listCount, comInt = list(map(int, input().split()))
intList = list(map(int, input().split()))
resultList = [int(x) for x in intList if comInt > x]

resultString = ' '.join(map(str,resultList))
print(resultString)

부족한 부분은 댓글로 알려주시면 감사한 마음으로 수정하겠습니다.

'알고리즘 > 배열(array)' 카테고리의 다른 글

백준 10813 python  (0) 2023.06.10
백준 10810 python  (0) 2023.06.09
백준 2562 python  (0) 2023.06.09
백준 10818 python  (0) 2023.06.09
백준 10807 python3  (0) 2023.06.09