Submission #387517

# Submission time Handle Problem Language Result Execution time Memory
387517 2021-04-08T17:05:48 Z Iwanttobreakfree Data Transfer (IOI19_transfer) C++17
0 / 100
15 ms 4772 KB
#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 -