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 | 31 |
Tags
- 백준알고리즘
- 스터디
- 다익스트라 알고리즘
- mysql
- react
- nodejs
- 리액트
- url parsing
- 서버구축
- 알고리즘
- 탐욕법
- 라우터
- Spring Boot
- 토이프로젝트
- ELB
- 완전탐색
- EC2
- java
- 자료구조
- 동적프로그래밍
- 정렬
- 백준
- BFS
- Algorithm
- spring
- EventListener
- AWS
- 브루트포스
- Router
- sort
Archives
- Today
- Total
공부하는 블로그
Baekjoon | Q.10871 - X보다 작은 수 본문
정수 N과 X, 그리고 N개의 정수를 입력받아 N개의 정수 중 X보다 작은 정수를 출력하는 문제이다.
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.util.Scanner;
public class Main {
public static void main(String[] args) throws IOException {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int x = sc.nextInt();
int[] nums = new int[n];
for (int i = 0; i < n; i++) {
nums[i] = sc.nextInt();
}
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
for (int i = 0; i < nums.length; i++) {
if(nums[i] < x) {
bw.write(nums[i] + " ");
}
}
bw.flush();
bw.close();
}
}
반복문을 이용하여 N개의 숫자를 하나하나 전부 비교해주었다. 비교 결과 X보다 작은 숫자는 출력하도록 하였다. 문제를 푸는데는 별다른 어려움은 없었다.
'알고리즘 공부' 카테고리의 다른 글
Baekjoon | Q.10951 - A + B 4 (0) | 2019.12.19 |
---|---|
Baekjoon | Q.1110 - 더하기 사이클 (0) | 2019.12.19 |
Baekjoon | Q.2439 - 별찍기 2 (0) | 2019.12.18 |
Baekjoon | Q.10817번 : 세 수 (0) | 2019.12.18 |
Baekjoon | Q.2884 - 알람 시계 (0) | 2019.12.18 |
Comments