프로그래머스 135808 과일 장수

Jmnote (토론 | 기여)님의 2023년 11월 26일 (일) 11:05 판 (새 문서: ==개요== {{프로그래머스|레벨=1|페이지=1|분류=연습문제}} ==같이 보기== * 함수 countDivisors() ==C++== <syntaxhighlight lang='cpp'> #include <string> #inc...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요

프로그래머스 135808 과일 장수

2 같이 보기

3 C++

#include <string>
#include <vector>
#include <algorithm>

using namespace std;

int solution(int k, int m, vector<int> score) {
    sort(score.begin(), score.end(), greater<int>());
    int answer = 0;
    for(int i=0; i<score.size()/m; i++) {
        answer += m * score[i*m+m-1];
    }
    return answer;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}