Submission #151813

#TimeUsernameProblemLanguageResultExecution timeMemory
151813erebos짝수 정렬 (tutorial3)C++17
Compilation error
0 ms0 KiB
#include "grader.h"
#include <bits/stc++.h>
using namespace std;

void sort_even(int N, int *A) {
	vector<int>temp;
	int i;
	for(i = 0; i < N; i++) {
		if(A[i] % 2 == 0) temp.push_back(A[i]);
	}
	sort(temp.begin(), temp.end());
}

Compilation message (stderr)

tutorial3.cpp:2:10: fatal error: bits/stc++.h: No such file or directory
 #include <bits/stc++.h>
          ^~~~~~~~~~~~~~
compilation terminated.