[Python] 백준 1074번 : Z
def sol(n, r, c): global result if n == 2: if r == R and c == C: print(result) return result += 1 if r == R and c + 1 == C: print(result) return result += 1 if r + 1 == R and c == C: print(result) return result += 1 if r + 1 == R and c + 1 == C: print(result) return result += 1 return sol(n / 2, r, c) sol(n / 2, r, c + n / 2) sol(n / 2, r + n / 2, c) sol(n / 2, r + n / 2, c + n / 2) result = 0 N..
더보기