This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
#include <vector>
#include <algorithm>
#include "grader.h"
using namespace std;
void sort_even(int n, int *arr) {
	vector<int> even;
	for (int i = 1; i < n; i++)
		if (arr[i] % 2 == 0)
			even.push_back(arr[i]);
	
	sort(even.begin(), even.end());
	for (auto it : even)
		Report(it);
}
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict  | Execution time | Memory | Grader output | 
|---|
| Fetching results... |