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
- 1차원 DP
- 2차원 dp
- 99클럽
- @GeneratedValue
- @GenericGenerator
- @Transactional
- Actions
- Amazon EFS
- amazon fsx
- Android Studio
- ANSI SQL
- ApplicationEvent
- async/await
- AVG
- AWS
- Azure
- bind
- builder
- button
- c++
- c++ builder
- c03
- Callback
- case when
- CCW
- chat GPT
- CICD
- Collections
- Combination
- combinations
Archives
- Today
- Total
기록
백준_1644_소수의 연속합 본문
문제
https://www.acmicpc.net/problem/1644
풀이
2부터 N까지의 소수를 구하고, Two Pointer 을 이용해서, 합이 N이 되는 경우를 찾는다.
1) 에라토스테네스의 체
2) 투 포인터
시작 인덱스와 끝 인덱스를 옮겨가면서, 누적합을 구한다.
코드
N = int(input())
# Get Prime
primes = list()
numBoard = [1, ]*(N+1)
primeList = list()
for factor in range(2, len(numBoard)) :
if numBoard[factor] == 0 : continue
for i in range(2*factor, len(numBoard), factor) :
numBoard[i] = 0
for factor in range(2, len(numBoard)) :
if numBoard[factor] == 1 :
primeList.append(factor)
# Get Sum - two pointer
s, e, ans = 0, 1, 0
if primeList :
accumulate = primeList[s]
while s<e :
if accumulate==N :
ans += 1
if accumulate>=N :
accumulate -= primeList[s]
s += 1
elif accumulate<N :
if e == len(primeList) : break
accumulate += primeList[e]
e += 1
print(ans)
'코딩테스트 > python' 카테고리의 다른 글
백준_17387_선분 교차2 (0) | 2022.03.10 |
---|---|
백준_2239_스도쿠 (0) | 2022.03.07 |
프로그래머스_python_괄호변환 (0) | 2022.02.28 |
백준_9527_1의 개수 세기 (0) | 2022.02.26 |
프로그래머스_python_오픈채팅방 (0) | 2022.02.23 |
Comments