Submission #304902

# Submission time Handle Problem Language Result Execution time Memory
304902 2020-09-22T07:39:54 Z model_code Stations (IOI20_stations) C++17
0 / 100
5 ms 772 KB
#include "stations.h"
#include <vector>
#include <cstdlib>

std::vector<int> label(int n, int k, std::vector<int> u, std::vector<int> v) {
	std::vector<int> labels(n);
	for (int i = 0; i < n; i++) {
		labels[i] = i;
	}
	return labels;
}

int find_next_station(int s, int t, std::vector<int> c) {
	exit(0);
	return c[0];
}
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 736 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 768 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 772 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 740 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 640 KB Unexpected end of file - int32 expected
2 Halted 0 ms 0 KB -