結果

問題 No.401 数字の渦巻き
ユーザー Mcpu3Mcpu3
提出日時 2018-11-16 20:15:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 892 bytes
コンパイル時間 2,373 ms
コンパイル使用メモリ 78,004 KB
実行使用メモリ 42,924 KB
最終ジャッジ日時 2024-06-06 20:22:46
合計ジャッジ時間 8,212 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,884 KB
testcase_01 AC 125 ms
40,936 KB
testcase_02 AC 121 ms
40,944 KB
testcase_03 AC 130 ms
41,188 KB
testcase_04 AC 135 ms
40,756 KB
testcase_05 AC 134 ms
41,112 KB
testcase_06 AC 140 ms
40,816 KB
testcase_07 AC 147 ms
41,204 KB
testcase_08 AC 147 ms
41,132 KB
testcase_09 AC 150 ms
41,152 KB
testcase_10 AC 158 ms
41,456 KB
testcase_11 AC 161 ms
41,304 KB
testcase_12 AC 169 ms
41,740 KB
testcase_13 AC 162 ms
41,488 KB
testcase_14 AC 169 ms
41,572 KB
testcase_15 AC 182 ms
41,412 KB
testcase_16 AC 168 ms
41,316 KB
testcase_17 AC 177 ms
41,800 KB
testcase_18 AC 184 ms
41,388 KB
testcase_19 AC 195 ms
41,784 KB
testcase_20 AC 200 ms
41,680 KB
testcase_21 AC 204 ms
41,804 KB
testcase_22 AC 207 ms
42,084 KB
testcase_23 AC 201 ms
41,760 KB
testcase_24 AC 216 ms
41,900 KB
testcase_25 AC 221 ms
41,924 KB
testcase_26 AC 223 ms
41,972 KB
testcase_27 AC 217 ms
42,212 KB
testcase_28 AC 223 ms
42,556 KB
testcase_29 AC 242 ms
42,924 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