| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1294598 | theiulius | World Map (IOI25_worldmap) | C++17 | 0 ms | 0 KiB |
#include "worldmap.h"
std::vector<std::vector<int>> create_map(int N, int M, std::vector<int> A, std::vector<int> B) {
std::vector<std::vector<int>> ans(N, std::vector<int>N);
for (int i = 0; i < n; i++){
for (int j = 0; j < n; j++){
ans[i].pb((i + j) % n + 1);
}
}
return ans;
}
