백준 - (# 6588)
https://www.acmicpc.net/problem/6588
Code
import sys
# Get all prime numbers by Eratotenes
max_num = 1000000
total_num_list = [False, False] + [True]*max_num
for i in range(2,len(total_num_list)):
if total_num_list[i] == True:
for j in range(i + i, len(total_num_list), i):
total_num_list[j] = False
# find proper summation
while True:
n = int(sys.stdin.readline())
if n == 0:
break
result = "Goldbach's conjecture is wrong."
for i in range(3,n//2+1):
if total_num_list[i] and total_num_list[n-i]:
result = '{} = {} + {}'.format(n,i,n-i)
break
print(result)
Author And Source
이 문제에 관하여(백준 - (# 6588)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@starteon/백준-6588저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)