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 |
Tags
- 주사위굴리기2
- 코테준비
- 볼륨 만들기
- N과M
- 백준
- 에라토스테네스의채
- 정올 1620
- java
- 재귀함수
- 중복조합
- D드라이브생성
- BFS
- 파티션 크기 조정
- 정보처리기사
- 알고리즘개념
- 중복순열
- 완전탐색
- 전화번호속의암호
- 백준2251
- Bfs와DFS
- 백준13458
- 백준15652
- 삼성역테
- 완탐
- 코테
- 23288
- 자바
- 자바 코테
- 순열
- 알고리즘
Archives
- Today
- Total
뚱땅뚱땅
[문제] 백준 2581번 소수 본문
728x90
* 출처: 백준 단계별로 풀어보기: 기본수학2
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
int M = Integer.parseInt(in.readLine());
int N = Integer.parseInt(in.readLine());
int sum = 0, min = N;
boolean flag = false;
for(int i=M;i<=N;i++) {
flag = isSosu(i);
if(flag) {
sum += i;
if(min>i)
min = i;
}
}
if(sum == 0) {
System.out.println(-1);
}else {
System.out.println(sum);
System.out.println(min);
}
}
static boolean isSosu(int n) {
if(n==1) return false;
if(n==2) return true;
for(int i=2;i<n;i++) {
if(n % i==0) return false;
}
return true;
}
}
기본 문제
728x90
'알고리즘 > 백준' 카테고리의 다른 글
[문제] 백준 1929번 소수 구하기 - 에라토스테네스의 체 이용하기 (0) | 2021.01.30 |
---|---|
[문제] 백준 11653번 소인수분해 (0) | 2021.01.30 |
[문제] 백준 2775번 부녀회장이 될테야 (0) | 2021.01.27 |
[문제] 백준 2839번 설탕 배달 (0) | 2021.01.25 |
[문제] 백준 10757번 큰 수 A+B (0) | 2021.01.25 |
Comments