프로그래머스 120923 연속된 수의 합

Jmnote (토론 | 기여)님의 2023년 11월 26일 (일) 12:50 판

1 개요

프로그래머스 120923 연속된 수의 합

2 C++

#include <string>
#include <vector>

using namespace std;

vector<int> solution(int num, int total) {
    int mid = total/num;
    int start = mid-(num/2);
    int end = mid+(num/2);
    if(total%num != 0) {
        start++;
    }
    vector<int> answer;
    for(int i=start; i<=end; i++) {
        answer.emplace_back(i);
    }
    return answer;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}