| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- Web
- JPA
- Git
- 이펙티브
- 리뷰
- kibana
- javascript
- Spring
- 후기
- nodejs
- 알고리즘
- RCP
- 자바
- boot
- Spring Boot
- 독후감
- 맛집
- elasticsearch
- 엘라스틱서치
- 백준
- 자바스크립트
- java
- effective
- node
- 스프링
- MySQL
- 인터페이스
- jface
- error
- java8
Archives
- Today
- Total
wedul
백준 1929번 소수 구하기 문제 본문
반응형
그 결과 된다.
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | import java.math.BigDecimal; import java.util.ArrayList; import java.util.List; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); int n = in.nextInt(); int m = in.nextInt(); List<Integer> result = new ArrayList<>(); // 순환 for (int i = n; i <= m; i++) { if (isDecimal(i)) { result.add(i); } } // 결과 출력 result.stream().forEach((e) -> { System.out.println(e); }); } /** * 소수 체크 * * @param num * @return */ private static boolean isDecimal(int num) { if (1 == num) { return false; } /** * 자연수는 자신의 제곱근 이상의 수로 나눠지지 않는다는 조건을 이용해서, 자신의 제곱근 수 까지의 수로 나눠지는지 여부를 판단. */ int sqrpData = new BigDecimal(Math.sqrt(num)).intValue(); for (int i = 2; i <= sqrpData; i++) { if (num % i == 0) { return false; } } return true; } } | cs |
반응형
'JAVA > 알고리즘' 카테고리의 다른 글
| 백준 4936 - 섬의개수 (0) | 2018.10.06 |
|---|---|
| 백준 알고리즘 2583 - 영역 구하기 (1) | 2018.10.06 |
| 백준 알고리즘1032 명령프롬프트 문제 (0) | 2018.10.04 |
| 백준 알고리즘 11650 - 좌표 정렬하기 (0) | 2018.10.04 |
| 백준 알고리즘 11399 ATM 문제 (0) | 2018.10.04 |