제출 #400882

#제출 시각아이디문제언어결과실행 시간메모리
400882DivannyJelly Flavours (IOI20_jelly)C++14
컴파일 에러
0 ms0 KiB
#include jelly.h
#include <bits/stdc++.h>

using namespace std;

int find_maximum_unique(int x, int y, vector<int> a, vector<int> b) 
{
	int n = a.size();
	sort(a.begin(), a.end());
	int i = 0, cont = 0;
	while (x - a[i] >= 0 && i < n)
	{
		if (x - a[i] >= 0)
		{
			cont++;
			x -= a[i];
		}
		i++;
	}
	return cont;
}

컴파일 시 표준 에러 (stderr) 메시지

jelly.cpp:1:10: error: #include expects "FILENAME" or <FILENAME>
    1 | #include jelly.h
      |          ^~~~~