728x90
https://school.programmers.co.kr/learn/courses/30/lessons/134240?language=cpp
소스코드
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
string solution(vector<int> food) {
string answer = "";
string str;
for (int i = 1; i < food.size(); i++)
{
int count = food[i] / 2;
for (int j = 0; j < count; j++)
{
str += to_string(i);
}
}
answer += str + "0";
reverse(str.begin(), str.end());
answer += str;
return answer;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv1 옹알이 (2) C++ (0) | 2023.08.24 |
---|---|
[프로그래머스]Lv1 햄버거 만들기 C++ (0) | 2023.08.17 |
[프로그래머스]Lv1 과일 장수 C++ (0) | 2023.08.17 |
[프로그래머스]Lv1 가장 가까운 같은 글자 C++ (0) | 2023.08.11 |
[프로그래머스]Lv1 크기가 작은 부분 문자열 C++ (0) | 2023.08.11 |