[SWEA] 1954 달팽이
출처: SWEA Input 2 3 4 Output #1 1 2 3 8 9 4 7 6 5 #2 1 2 3 4 12 13 14 5 11 16 15 6 10 9 8 7 N이 주어졌을 때, 방향이 바뀌는 시점과 채워지는 값에 유의하며 구현 - 방향이 바뀌는 시점: 벽면이거나, 이미 숫자가 채워진 경우 - 채워지는 값: 1~N*N import java.util.Scanner; public class Solution { // 달팽이 모양을 그릴 수 있도록 우,하,좌,상 static public int[] dx = {0, 1, 0, -1}; static public int[] dy = {1, 0, -1, 0}; static public int N; public static void main(String[] args)..
2021. 3. 1.