250x250
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
- scrolly
- java
- 한빛아카데미
- html
- quizlet
- 이벤트
- 데이터통신
- 라이브러리
- gsap
- JLPT
- 네트워킹
- Algorithm
- 일본어
- 단어장
- 초연결사회의 데이터통신과 네트워킹
- ArrayList
- 스크롤
- 함수
- reactjs code snippets
- 알고리즘
- prettier-code formatter
- 백준
- Node.js
- 자바
- JavaScript
- ScrollToPlugin
- React
- 연습문제
- 초연결 사회의 데이터통신과 네트워킹
- 자바스크립트
Archives
- Today
- Total
umilove98의 블로그
백준 2061 Java 자바 본문
반응형
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
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigInteger;
import java.util.StringTokenizer;
public class Q2061 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
BigInteger k = new BigInteger(st.nextToken());
int l = Integer.parseInt(st.nextToken());
boolean[] primes = new boolean[l + 1];
primes[1] = true;
for(int i = 2 ; i < l ; i++){
if(primes[i]) continue; // 소수가 아닌(true) 수는 넘어가기
BigInteger now = new BigInteger(Integer.toString(i));
if(k.mod(now).compareTo(BigInteger.ZERO) == 0) { // p를 now로 나눈 나머지가 0이면
System.out.println("BAD " + now);
return;
}
for(int j = i + i ; j <= l ; j += i){ // i를 제외한 i의 배수 모두 체크하기
primes[j] = true;
}
}
System.out.println("GOOD");
}
}
|
cs |
반응형
'algorithm > 백준' 카테고리의 다른 글
백준 2420 Java 자바 (0) | 2021.08.19 |
---|---|
백준 1730 Java 자바 (0) | 2021.08.18 |
백준 1544 Java 자바 (0) | 2021.08.17 |
백준 1712 Java 자바 (0) | 2021.08.16 |
백준 1531 Java 자바 (0) | 2021.08.13 |