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
- 구현
- two pointers
- Matrix
- Number Theory
- geometry
- Tree
- java
- implement
- 코딩테스트
- Math
- 파이썬
- Stack
- Binary Search
- Data Structure
- dynamic programming
- sorting
- Binary Tree
- simulation
- greedy
- 자바
- SQL
- hash table
- Method
- database
- Counting
- 코테
- array
- bit manipulation
- Class
- string
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 10871. X보다 작은 수 본문
- 입력: 첫째 줄에 N과 X가 주어진다. (1 ≤ N, X ≤ 10,000) 둘째 줄에 수열 A를 이루는 정수 N개가 주어진다. 주어지는 정수는 모두 1보다 크거나 같고, 10,000보다 작거나 같은 정수이다.
- 출력: X보다 작은 수를 입력받은 순서대로 공백으로 구분해 출력한다. X보다 작은 수는 적어도 하나 존재한다.
import java.util.*;
import java.io.*;
class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
String[] n = br.readLine().split(" ");
ArrayList<String> list = new ArrayList<String>();
String[] input = br.readLine().split(" ");
for(int i=0 ; i<Integer.valueOf(n[0]) ; i++)
if(Integer.valueOf(input[i])<Integer.valueOf(n[1])) list.add(input[i]);
for(int i=0; i<list.size(); i++)
bw.write(list.get(i)+" ");
bw.flush();
bw.close();
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 2562. 최댓값 (0) | 2023.03.17 |
---|---|
[백준 온라인 저지] 10818. 최소, 최대 (0) | 2023.03.17 |
[백준 온라인 저지] 10807. 개수 세기 (0) | 2023.03.17 |
[백준 온라인 저지] 10988. 팰린드롬인지 확인하기 (0) | 2023.03.17 |
[백준 온라인 저지] 2444. 별 찍기 - 7 (0) | 2023.03.17 |