Submission #1333086

#TimeUsernameProblemLanguageResultExecution timeMemory
1333086SmuggingSpunReversing a Sequence (IOI16_reverse)C++20
100 / 100
19 ms4008 KiB
#include "reverse.h"
#include<bits/stdc++.h>
using namespace std;
std::vector<long long> reverse(std::vector<long long> a) {
	reverse(a.begin(), a.end());
	return a;
}
#Verdict Execution timeMemoryGrader output
Fetching results...