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
- 구현
- greedy
- dynamic programming
- Matrix
- 코테
- string
- Stack
- Number Theory
- simulation
- Binary Search
- bit manipulation
- database
- SQL
- Class
- 코딩테스트
- hash table
- implement
- array
- java
- two pointers
- geometry
- Math
- Method
- Tree
- Binary Tree
- Counting
- Data Structure
- 자바
- sorting
- 파이썬
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 17103. 골드바흐 파티션 본문
골드바흐의 추측: 2보다 큰 짝수는 두 소수의 합으로 나타낼 수 있다. 짝수 N을 두 소수의 합으로 나타내는 표현을 골드바흐 파티션이라고 한다. 두 소수의 순서만 다른 것은 같은 파티션이다.
1. 입력
- 첫째 줄에 테스트 케이스의 개수 T (1 ≤ T ≤ 100)가 주어진다. 각 테스트 케이스는 한 줄로 이루어져 있고, 정수 N은 짝수이고, 2 < N ≤ 1,000,000을 만족한다.
2. 출력
- 각각의 테스트 케이스마다 골드바흐 파티션의 수를 출력한다.
3. 예제
4. 코드
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));
int t = Integer.valueOf(br.readLine());
for(int i=0 ; i<t ; i++){
int n = Integer.valueOf(br.readLine());
boolean[] notprime = new boolean[n+1]; // 소수라면 false
eratosthenes(notprime);
int count = 0;
for(int j=2 ; j<=n/2 ; j++){
if(j<=n-j && !notprime[j] && !notprime[n-j])
count++;
}
bw.write(count+"\n");
}
bw.flush(); bw.close();
}
static void eratosthenes(boolean[] d){
for(int i=2 ; i<d.length ; i++){
if(d[i]==false){
for(int j=i*2 ; j<d.length ; j+=i)
d[j] = true;
}
}
}
}
- 72852KB, 608ms
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[백준 온라인 저지] 10718. We love kriii (0) | 2023.06.22 |
---|---|
[백준 온라인 저지] 2108. 통계학 (0) | 2023.06.22 |
[백준 온라인 저지] 1018. 체스판 다시 칠하기 (0) | 2023.06.22 |
[LeetCode/Easy] 2231. Largest Number After Digit Swaps by Parity (0) | 2023.06.21 |
[LeetCode/Easy] 2164. Sort Even and Odd Indices Independently (0) | 2023.06.21 |