Submission #575333

#TimeUsernameProblemLanguageResultExecution timeMemory
575333SilentVisitor짝수 정렬 (tutorial3)C++17
Compilation error
0 ms0 KiB
#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); }

Compilation message (stderr)

tutorial3.cpp: In function 'void sort_even(int, int*)':
tutorial3.cpp:16:1: error: expected '}' at end of input
   16 | }
      | ^
tutorial3.cpp:7:30: note: to match this '{'
    7 | void sort_even(int n, int* a){
      |                              ^