| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1294603 | theiulius | World Map (IOI25_worldmap) | C++17 | 0 ms | 0 KiB |
#include "worldmap.h"
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
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>);
for (int i = 0; i < N; i++){
for (int j = 0; j < N; j++){
ans[i].pb((i + j) % N + 1);
}
}
return ans;
}
