結果

問題 No.401 数字の渦巻き
ユーザー kano_townkano_town
提出日時 2016-07-22 22:49:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 1,238 bytes
コンパイル時間 3,780 ms
コンパイル使用メモリ 77,972 KB
実行使用メモリ 60,816 KB
最終ジャッジ日時 2024-11-06 09:09:01
合計ジャッジ時間 10,044 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,972 KB
testcase_01 AC 131 ms
54,012 KB
testcase_02 AC 136 ms
54,088 KB
testcase_03 AC 138 ms
54,212 KB
testcase_04 AC 140 ms
53,712 KB
testcase_05 AC 145 ms
54,140 KB
testcase_06 AC 148 ms
54,064 KB
testcase_07 AC 153 ms
53,944 KB
testcase_08 AC 155 ms
54,232 KB
testcase_09 AC 154 ms
54,432 KB
testcase_10 AC 161 ms
53,944 KB
testcase_11 AC 165 ms
54,336 KB
testcase_12 AC 166 ms
54,520 KB
testcase_13 AC 170 ms
54,368 KB
testcase_14 AC 173 ms
54,192 KB
testcase_15 AC 187 ms
54,340 KB
testcase_16 AC 192 ms
54,188 KB
testcase_17 AC 201 ms
54,628 KB
testcase_18 AC 205 ms
54,424 KB
testcase_19 AC 225 ms
54,528 KB
testcase_20 AC 213 ms
54,664 KB
testcase_21 AC 217 ms
54,492 KB
testcase_22 AC 210 ms
54,656 KB
testcase_23 AC 216 ms
54,516 KB
testcase_24 AC 224 ms
54,544 KB
testcase_25 AC 230 ms
54,596 KB
testcase_26 AC 234 ms
54,556 KB
testcase_27 AC 225 ms
54,504 KB
testcase_28 AC 239 ms
54,836 KB
testcase_29 AC 272 ms
60,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Yukicoder401 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt(), cnt = 1;
        int[] res = new int[n * n];
        Arrays.fill(res, 0);
        int x = 0, y = 0, dx = 1, dy = 0;
        while (cnt <= n * n) {
                res[y * n + x] = cnt++;
                if ((x + dx) < 0 || (x + dx) > n - 1 || (y + dy) < 0 || (y + dy) > n - 1 || res[(y + dy) * n + (x + dx)] != 0) {
                    if (dx == 1) {
                        dx = 0;
                        dy = 1;
                    } else if (dy == 1) {
                        dx = -1;
                        dy = 0;
                    } else if (dx == -1) {
                        dx = 0;
                        dy = -1;
                    } else if (dy == -1) {
                        dx = 1;
                        dy = 0;
                    }
                }
                x += dx;
                y += dy;
        }
        for (y = 0; y < n; y++) {
            for (x = 0; x < n; x++) {
                System.out.printf("%03d ", res[y * n + x]);
            }
            System.out.println("");
        }
    }
}
0