728x90
반응형
b보다 작은 수를 순서대로 출력해주면 된다.
a, b = map(int, input().split(" "))
c = list(map(int, input().split(" ")))
for i in range(a):
if b > c[i]:
print(c[i], end = " ")
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 10950번 A+B - 3(python) (0) | 2020.02.15 |
---|---|
백준 알고리즘 10872번 팩토리얼(python) (0) | 2020.02.15 |
백준 알고리즘 10870번 피보나치 수 5(python) (0) | 2020.02.15 |
백준 알고리즘 10869번 사칙연산(python) (0) | 2020.02.15 |
백준 알고리즘 10826번 피보나치 수 4(python) (0) | 2020.02.15 |