結果

問題 No.401 数字の渦巻き
ユーザー 37zigen37zigen
提出日時 2016-07-23 00:48:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 774 bytes
コンパイル時間 2,553 ms
コンパイル使用メモリ 79,484 KB
実行使用メモリ 60,808 KB
最終ジャッジ日時 2024-11-06 13:33:24
合計ジャッジ時間 9,709 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
53,988 KB
testcase_01 AC 139 ms
53,876 KB
testcase_02 AC 141 ms
53,936 KB
testcase_03 AC 146 ms
53,988 KB
testcase_04 AC 145 ms
54,076 KB
testcase_05 AC 155 ms
54,152 KB
testcase_06 AC 157 ms
54,316 KB
testcase_07 AC 161 ms
53,812 KB
testcase_08 AC 165 ms
54,432 KB
testcase_09 AC 166 ms
54,148 KB
testcase_10 AC 171 ms
54,288 KB
testcase_11 AC 178 ms
54,308 KB
testcase_12 AC 184 ms
54,324 KB
testcase_13 AC 198 ms
54,380 KB
testcase_14 AC 204 ms
54,096 KB
testcase_15 AC 211 ms
54,448 KB
testcase_16 AC 213 ms
54,088 KB
testcase_17 AC 211 ms
54,448 KB
testcase_18 AC 206 ms
54,420 KB
testcase_19 AC 214 ms
54,592 KB
testcase_20 AC 228 ms
54,728 KB
testcase_21 AC 225 ms
54,296 KB
testcase_22 AC 227 ms
54,724 KB
testcase_23 AC 223 ms
54,692 KB
testcase_24 AC 234 ms
54,572 KB
testcase_25 AC 250 ms
54,304 KB
testcase_26 AC 248 ms
54,672 KB
testcase_27 AC 250 ms
54,668 KB
testcase_28 AC 251 ms
54,340 KB
testcase_29 AC 298 ms
60,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		solver();
	}

	static void solver() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[][] table = new int[n][n];
		int d = 0;
		int now = 1;
		int x = 0, y = 0;
		int[] dx = { 1, 0, -1, 0 };
		int[] dy = { 0, 1, 0, -1 };

		while (true) {
			if (x >= n || y >= n)
				break;
			if (table[x][y] != 0)
				break;
			table[x][y] = now;
			now++;
			if (x + dx[d] >= n || y + dy[d] >= n || x + dx[d] < 0 || y + dy[d] < 0 || table[x + dx[d]][y + dy[d]] != 0)
				d = (d + 1) % 4;
			x += dx[d];
			y += dy[d];

		}
		for (int j = 0; j < n; j++) {
			for (int i = 0; i < n; i++) {
				System.out.printf("%03d" + (i == n - 1 ? "\n" : " "), table[i][j]);
			}
		}

	}
}
0