Submission #241341

#TimeUsernameProblemLanguageResultExecution timeMemory
241341clairvoyantReversing a Sequence (IOI16_reverse)C++14
100 / 100
61 ms4216 KiB

#include <bits/stdc++.h>

using namespace std;

vector<long long int>reverse(vector<long long int>a){
	reverse(a.begin(), a.end());
    return a;
}
#Verdict Execution timeMemoryGrader output
Fetching results...