[D3] 합성수 방정식 - 16002
성능 요약
메모리: 21,160 KB, 시간: 130 ms, 코드길이: 691 Bytes
제출 일자
2023-10-21 00:30
출처: SW Expert Academy, https://swexpertacademy.com/main/code/problem/problemList.do
import java.util.*;
import java.io.*;
class Solution
{
public static void main(String args[]) throws Exception
{
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
for(int tc = 1; tc <= T; tc++)
{
long N = sc.nextInt();
long y = 2;
long x = N + y;
while(isPrime(x) || isPrime(y)){
x++;
y++;
}
System.out.println("#" + tc + " " + x + " " + y);
}
}
private static boolean isPrime(long num){
for(int i = 2; i <= Math.sqrt(num); i++){
if(num % i == 0){
return false;
}
}
return true;
}
}
'알고리즘 - SWEA > D3' 카테고리의 다른 글
[SW expert Academy] SWEA 15758번 무한 문자열 자바(Java) (0) | 2023.10.21 |
---|---|
[SW expert Academy] SWEA 15941번 평행사변형 자바(Java) (0) | 2023.10.21 |
[SW expert Academy] SWEA 16800번 구구단 걷기 자바(Java) (0) | 2023.10.20 |
[SW expert Academy] SWEA 16910번 원 안의 점 자바(Java) (0) | 2023.10.20 |
[SW expert Academy] SWEA 17319번 문자열문자열 자바(Java) (0) | 2023.10.20 |