Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 타입스크립트
- 코드업
- codeup
- 분할메모리할당
- 토이프로젝트
- 기초100제
- web
- react
- 협업
- CPU 스케줄링
- Spring
- 정렬
- error
- 자료구조
- Operating System
- Java
- 프로그래머스
- 백준
- 파이썬
- memory
- C++
- js to ts
- 리덕스장바구니
- react-redux
- 스프링
- 일상
- 공부
- Redux
- OS
- 알고리즘
Archives
- Today
- Total
감자튀김 공장🍟
[백준/10871] X보다 작은 수 (with 파이썬) 본문
반응형
✔ 문제
✔ 풀이
n, x = map(int, input().split())
numbers = list(map(int, input().split()))
for i in numbers:
if i < x:
print(i, end=' ')
✔ 후기
end=' ' 를 사용하면 \n 없이 원하는 변수를 한 줄에 출력할 수 있다.
반응형
'Algorithm > BOJ' 카테고리의 다른 글
[백준/10951] A+B - 4 (with 파이썬) (0) | 2022.10.04 |
---|---|
[백준/10952] A+B - 5 (with 파이썬) (0) | 2022.10.04 |
[백준/2439] 별 찍기 - 2 (with 파이썬) (0) | 2022.10.03 |
[백준/2438] 별 찍기 - 1 (with 파이썬) (0) | 2022.10.03 |
[백준/11022] A+B - 8 (with 파이썬) (0) | 2022.10.03 |
Comments