def f(n, r, c) : if [n, r, c] == [0, 0, 0] : return 0 x = pow(2, n-1) if r = x : return f(n, r, c-x) + pow(x, 2) elif r>= x and c = x and c>= x : return f(n, r-x, c-x) + 3 * pow(x, 2) n, r, c = map(int, input().split()) print(int(f(n, r ,c))) 2차원 배열을 가로반 세로반 4등분 했을때, 좌상단 덩어리는 N=n-1의 배열과 같다. f(n..