백준 10871 파이썬
2024. 1. 25. 10:07ㆍ코딩 도구/백준 (단계별)
반응형
백준 10871 : x보다 작은 수
문제
https://www.acmicpc.net/problem/10871
답안 코드 :
N, X = map(int, input().split())
L = list(map(int, input().split()))
for i in range(N):
if L[i] < X:
print(L[i], end=" ") # end=" " 가 공백으로 구분해 출력
N, X = map(int, input().split())
L = list(map(int, input().split()))
for i in range(N):
if L[i] < X:
print(L[i], end=" ") # end=" " 가 공백으로 구분해 출력
백준 / 문제 / 단계별로 풀어보기 / 4단계 1차원 배열
반응형
'코딩 도구 > 백준 (단계별)' 카테고리의 다른 글
백준 10818 파이썬 (2) | 2024.01.25 |
---|---|
백준 10988 파이썬 (2) | 2024.01.25 |
백준 10807 파이썬 , count : python 리스트 내장 메소드 (2) | 2024.01.24 |
백준 10951 파이썬 (1) | 2024.01.24 |
백준 10952 파이썬 (33) | 2024.01.23 |