Skip to content

Commit 13f5149

Browse files
authored
[BOJ] X보다 작은 수/브론즈5/3(O) -m "https://www.acmicpc.net/problem/10871"
1 parent 3c2f438 commit 13f5149

File tree

1 file changed

+7
-0
lines changed
  • learntosurf/Baekjoon/4_1차원_배열

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# 내 풀이
2+
N, X = map(int, input().split())
3+
A = input()
4+
5+
for i in map(int, A.split()):
6+
if i < X:
7+
print(i, end=' ')

0 commit comments

Comments
 (0)