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 "grader.h"
#include<bits/stdc++.h>
using namespace std;
#define ll long long
void sort_even(int n, int* a){
vector<int> dp;
for(int i = 0; i < n; i += 1){
if(!(a[i] & 1))
dp.push_back(a[i]);
}
sort(dp.begin(), dp.end());
for(int x : dp)
Report(x);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |