Submission #151817

#TimeUsernameProblemLanguageResultExecution timeMemory
151817erebos짝수 정렬 (tutorial3)C++17
100 / 100
2 ms376 KiB
#include "grader.h"
#include <bits/stdc++.h>
using namespace std;

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

Compilation message (stderr)

tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:11:16: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
  for(int i=0; i<temp.size(); ++i){
               ~^~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...