結果

問題 No.401 数字の渦巻き
ユーザー atkrymatkrym
提出日時 2016-10-22 10:33:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 1,282 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 78,024 KB
実行使用メモリ 44,704 KB
最終ジャッジ日時 2024-11-23 17:04:42
合計ジャッジ時間 8,063 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,588 KB
testcase_01 AC 125 ms
41,192 KB
testcase_02 AC 114 ms
41,624 KB
testcase_03 AC 128 ms
41,404 KB
testcase_04 AC 130 ms
41,600 KB
testcase_05 AC 121 ms
41,272 KB
testcase_06 AC 122 ms
40,516 KB
testcase_07 AC 136 ms
41,300 KB
testcase_08 AC 139 ms
41,540 KB
testcase_09 AC 141 ms
41,752 KB
testcase_10 AC 144 ms
41,476 KB
testcase_11 AC 144 ms
41,592 KB
testcase_12 AC 142 ms
41,648 KB
testcase_13 AC 146 ms
41,812 KB
testcase_14 AC 149 ms
41,636 KB
testcase_15 AC 162 ms
41,752 KB
testcase_16 AC 168 ms
41,848 KB
testcase_17 AC 153 ms
41,784 KB
testcase_18 AC 155 ms
41,856 KB
testcase_19 AC 164 ms
42,256 KB
testcase_20 AC 172 ms
41,924 KB
testcase_21 AC 180 ms
41,828 KB
testcase_22 AC 176 ms
42,196 KB
testcase_23 AC 179 ms
41,928 KB
testcase_24 AC 170 ms
42,188 KB
testcase_25 AC 184 ms
42,196 KB
testcase_26 AC 185 ms
42,028 KB
testcase_27 AC 185 ms
42,620 KB
testcase_28 AC 192 ms
42,680 KB
testcase_29 AC 197 ms
44,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    private static int[][] ary;
    public static void main(String[] args) throws Exception {
        int n = sc.nextInt();
        move(n);
        show(n);
    }
    
    public static void move(int n) {
        ary = new int[n][n];
        int x = 0;
        int y = 0;
        int[] dx = {0, 1, 0, -1};
        int[] dy = {1, 0, -1, 0};
        int d = 0;
        for (int i = 1;i <= n*n;i++) {
            ary[x][y] = i;
            int nx = x + dx[d];
            int ny = y + dy[d];
            if (nx < 0 || n <= nx || ny < 0 || n <= ny) {
                d = (d+1)%4;
                nx = x + dx[d];
                ny = y + dy[d];
            } else if (ary[nx][ny] > 0) {
                d = (d+1)%4;
                nx = x + dx[d];
                ny = y + dy[d];
            }
            x = nx;
            y = ny;
        }
    }
    
    public static void show(int n) {
        for (int i = 0;i < n;i++) {
            StringBuilder sb = new StringBuilder();
            for (int j = 0;j < n;j++) {
                sb.append(String.format("%03d", ary[i][j])).append(" ");
            }
            System.out.println(sb.substring(0, sb.length()-1));
        }
    }
}
0