#include "transfer.h"
#include <vector>
using namespace std;
vector<int> get_attachment(vector<int> source) {
int n=source.size();
for(int i=0;i<n;i++)source.push_back(source[i]);
return source;
}
vector<int> retrieve(vector<int> data) {
int n=data.size();
n/=2;
return vector<int>(data.begin()+n, data.end());
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
6 ms |
1196 KB |
WA in grader: wrong source retrieval |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
15 ms |
4772 KB |
WA in grader: wrong source retrieval |
2 |
Halted |
0 ms |
0 KB |
- |