Skip to content

Instantly share code, notes, and snippets.

let input = readLine()!.split(separator: " ").map { Int($0)! }
let n = input[0], m = input[1], k = input[2]
// 더해줄 양분의 값들
var addFoodValues: [[Int]] = []
// 가장 처음의 양분
var food = [[Int]](repeating: [Int](repeating: 5, count: n), count: n)
// 위치 (n * n)과 나무들를 갖고있는 3차원 배열
print("""
,r'\"7
r`-_ ,' ,/
\\. ". L_r'
`~\\/
|
|
""")