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
- topdown
- 오픽노잼
- XML
- 주석
- 영어말하기
- dynamicProgramming
- 안드로이드
- 안드로이드주석
- 이진탐색
- 오픽가격
- 오픽
- ㅂ
- fibo
- 디피
- 바텀업
- 오픽노잼공부방법
- dp
- 메모이제이션
- English
- XML주석
- 영어회화
- 이진탐색 #나무 자르기
- 오픽공부법
- opic
- 오픽점수잘받는방법
- 탑다운
- 다이나믹프로그래밍
- 피보나치수열
- stack 스택
Archives
RUBY
[백준] 골드바흐의 추측 본문
출처:: www.acmicpc.net/problem/6588
분류:: 수학
1. 문제 이해 및 해결과정
2. 풀이방법
1. 에라토스테네스의 체
#골드바흐의 추측
#https://www.acmicpc.net/problem/6588
import sys
import math
maxv=1000000
sosu=[True]*(maxv+1)
sosu[1]=False
for i in range(2,int(math.sqrt(maxv))+1): #소수구하기
if sosu[i]:
j=2
while i*j<=maxv:
sosu[i*j]=False
j+=1
while True:
n=int(sys.stdin.readline())
a,b=0,0
if n==0:
break
for i in range(3, n + 1, 2):
if sosu[i] == True and i % 2 == 1 and sosu[n - i] == True and (n - i) % 2 == 1:
a, b = i, n - i
break
if a!=0 and b!=0:
print("%d = %d + %d" %(n,a,b))
else:
print("Goldbach's conjecture is wrong.")
3. 오답원인
1. 시간초과
- 어떻게 해결할까... 1) 입력받을 때마다 소수 구할 필요 없음
#골드바흐의 추측
#https://www.acmicpc.net/problem/6588
import sys
import math
sys.stdin = open("input.txt","r")
def gold(n):
sosu=[True]*(n+1)
sosu[1]=False
for i in range(2,int(math.sqrt(n))+1): #소수구하기
if sosu[i]:
j=2
while i*j<=n:
sosu[i*j]=False
j+=1
for i in range(3,n+1,2):
if sosu[i]==True and i%2==1 and sosu[n-i]==True and (n-i)%2==1:
a,b=i,n-i
return a,b
return None,None
while True:
n=int(sys.stdin.readline())
if n==0:
break
a,b=gold(n)
if a and b:
print("%d = %d + %d" %(n,a,b))
else:
print("Goldbach's conjecture is wrong.")
4. 알게된 점
'PS > BOJ' 카테고리의 다른 글
[백준] 골드바흐 파티션 (0) | 2020.09.30 |
---|---|
[백준] GCD 합 (0) | 2020.09.30 |
[백준] 최소공배수 (0) | 2020.09.30 |
[백준] 8진수 2진수 (0) | 2020.09.30 |
[백준] -2진수 (0) | 2020.09.30 |
Comments