Submission #412362

#TimeUsernameProblemLanguageResultExecution timeMemory
412362aryan12Reversing a Sequence (IOI16_reverse)C++17
100 / 100
39 ms5828 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...