| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1294603 | theiulius | 세계 지도 (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;
}
