結果

問題 No.401 数字の渦巻き
ユーザー Mcpu3Mcpu3
提出日時 2018-11-16 20:15:44
言語 Java
(openjdk 23)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 892 bytes
コンパイル時間 2,165 ms
コンパイル使用メモリ 77,128 KB
実行使用メモリ 43,332 KB
最終ジャッジ日時 2024-12-24 14:15:33
合計ジャッジ時間 8,614 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,124 KB
testcase_01 AC 123 ms
40,908 KB
testcase_02 AC 122 ms
41,268 KB
testcase_03 AC 127 ms
41,236 KB
testcase_04 AC 132 ms
40,972 KB
testcase_05 AC 127 ms
40,380 KB
testcase_06 AC 142 ms
41,348 KB
testcase_07 AC 143 ms
41,176 KB
testcase_08 AC 140 ms
41,112 KB
testcase_09 AC 178 ms
41,252 KB
testcase_10 AC 189 ms
41,584 KB
testcase_11 AC 194 ms
41,652 KB
testcase_12 AC 152 ms
41,484 KB
testcase_13 AC 158 ms
41,324 KB
testcase_14 AC 162 ms
41,512 KB
testcase_15 AC 179 ms
41,568 KB
testcase_16 AC 174 ms
41,800 KB
testcase_17 AC 184 ms
41,552 KB
testcase_18 AC 188 ms
41,836 KB
testcase_19 AC 213 ms
41,880 KB
testcase_20 AC 199 ms
41,840 KB
testcase_21 AC 190 ms
41,988 KB
testcase_22 AC 203 ms
42,160 KB
testcase_23 AC 194 ms
41,912 KB
testcase_24 AC 196 ms
41,908 KB
testcase_25 AC 209 ms
42,136 KB
testcase_26 AC 215 ms
41,896 KB
testcase_27 AC 226 ms
42,408 KB
testcase_28 AC 215 ms
42,388 KB
testcase_29 AC 238 ms
43,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt(), H = 0, W = 0, ans[][] = new int[N][N], tmp = 0;
		sc.close();
		for (int i = 0; i < N * N; ++i) {
			ans[H][W] = i + 1;
			if (tmp % 4 == 0) {
				if (W >= N - 1 || ans[H][W + 1] != 0) {
					++H;
					++tmp;
				}
				else ++W;
			}
			else if (tmp % 4 == 1) {
				if (H >= N - 1 || ans[H + 1][W] != 0) {
					--W;
					++tmp;
				}
				else ++H;
			}
			else if (tmp % 4 == 2) {
				if (W <= 0 || ans[H][W - 1] != 0) {
					--H;
					++tmp;
				}
				else --W;
			}
			else {
				if (H <= 0 || ans[H - 1][W] != 0) {
					++W;
					++tmp;
				}
				else --H;
			}
		}
		for (int i = 0; i < N; ++i) {
			for (int j = 0; j < N; ++j) System.out.printf("%03d ", ans[i][j]);
			System.out.println();
		}
	}
}
0