반응형
PROBLEM
- Link
Approach to the problem
-
Code
count, num = map(int, input().split())
# 위치에 따른 비교가 필요하기 때문에 배열로 저장해서 확인 예정
inArr = list(map(int, input().split()))
for i in range(count):
if inArr[i] < num:
print(inArr[i], end=" ")
# -----------
# 배열 만드는 다른 방법 (List 사용하지 않음)
N, x = map(int, input().split())
a = map(int, input().split())
c = []
for i in a:
if i<x:
print(i, end=' ')
End
-
반응형
'[SW][BEAKJOON] > [SW][BEAKJOON][반복문]' 카테고리의 다른 글
[BEAKJOON][반복문][8393][Python] 합 (0) | 2022.03.30 |
---|---|
[BEAKJOON][반복문][10951][Python] A+B - 4 (0) | 2022.03.30 |
[BEAKJOON][반복문][2438][Python] 별 찍기 - 1 (0) | 2022.03.30 |
[BEAKJOON][반복문][15552][Python] 빠른 A+B (0) | 2022.03.30 |
[BEAKJOON][반복문][2739][Python] 구구단 (0) | 2022.03.30 |