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
- 의미와 무의미의 경계에서
- 데이터베이스 배움터
- 언리얼 플러그인
- 1759번
- 실습
- 오손데이터읽기
- 비재귀셰그먼트
- UActor
- 백준
- C++
- Linux
- 언리얼 커스텀 플러그인
- SQL
- 트랜잭션 관리
- oracle
- 1253번
- FBX
- command not found
- OS
- 백준 1253번
- Unreal
- 5639
- hackerank
- 1967번
- 민겸수
- objtofbx
- Security
- 2단계로킹
- 셰그먼트트리
- UnrealMP
Archives
- Today
- Total
fatalite
C++ / 숫자의 표현 본문
Problem
난이도 : 프로그래머스 2단계
정답률 : 73%
분류 : 정수 분할(?), 내가 푼 방법은 Lazy start이다.
Solution
#include <string>
#include <vector>
#include <iostream>
using namespace std;
int solution(int n) {
int cnt = 0;
int left = 1;
int right = 1;
while(right >= left){
int sum = 0;
for(int i = left; i <= right; i++){
sum += i;
}
if(sum < n){
right++;
}
else{
left++;
if(sum == n){
cnt++;
}
}
}
return cnt;
}
'코딩 인터뷰 > 프로그래머스' 카테고리의 다른 글
C++ / 카펫 (0) | 2023.05.07 |
---|---|
C++ / 영어 끝말잇기 (0) | 2023.05.07 |
C++ / 이진 변환 반복하기 (0) | 2023.04.24 |
C++ / 올바른 괄호 (0) | 2023.04.22 |
C++ / 최소값 만들기 (0) | 2023.04.22 |