| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1318557 | uranhishig | 세계 지도 (IOI25_worldmap) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
#include "worldmap.h"
using namespace std;
#define int long long
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(2 * N, std::vector<int>(2 * N, 1));
for (int i = 0; i < 2 * N; i++) {
for (int j = 0; j < 2 * N; j++) {
ans[i][j] = j+ 1;
}
}
return ans;
}
