코드#include using namespace std;int n,r,c;// 2**n칸// r행 c열 몇 번째 방문?int go(int size, int row, int col) { // 기저조건 if(size == 1) { return 0; } // 탐색 int halfSize = size / 2; int quadrantSize = halfSize * halfSize; if(row = halfSize) { return quadrantSize + go(halfSize, row, col - halfSize); } else if(row >= halfSize && col = halfSize && col >= halfSize) { ..