[level 2] Title: 더 맵게, Time: 1726.30 ms, Memory: 50.8 MB -BaekjoonHub

This commit is contained in:
SSUM
2025-03-26 16:57:28 +09:00
parent e53bbb5abb
commit ab0e70f8a5
2 changed files with 11 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
# [level 2] 더 맵게 - 42626
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/42626?language=python3)
[문제 링크](https://school.programmers.co.kr/learn/courses/30/lessons/42626)
### 성능 요약
@@ -16,7 +16,7 @@
### 제출 일자
2025년 03월 26일 16:57:20
2025년 03월 26일 16:57:27
### 문제 설명

View File

@@ -0,0 +1,9 @@
#include <string>
#include <vector>
using namespace std;
int solution(vector<int> scoville, int K) {
int answer = 0;
return answer;
}