結果

問題 No.401 数字の渦巻き
ユーザー YamaKasaYamaKasa
提出日時 2019-02-03 19:09:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 265 ms / 2,000 ms
コード長 1,515 bytes
コンパイル時間 2,575 ms
コンパイル使用メモリ 81,788 KB
実行使用メモリ 47,716 KB
最終ジャッジ日時 2024-05-10 03:49:35
合計ジャッジ時間 8,863 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,432 KB
testcase_01 AC 142 ms
41,536 KB
testcase_02 AC 137 ms
41,444 KB
testcase_03 AC 141 ms
41,356 KB
testcase_04 AC 143 ms
40,996 KB
testcase_05 AC 145 ms
41,580 KB
testcase_06 AC 150 ms
41,676 KB
testcase_07 AC 156 ms
41,124 KB
testcase_08 AC 156 ms
41,568 KB
testcase_09 AC 160 ms
41,420 KB
testcase_10 AC 162 ms
41,720 KB
testcase_11 AC 166 ms
41,640 KB
testcase_12 AC 170 ms
41,680 KB
testcase_13 AC 170 ms
41,732 KB
testcase_14 AC 170 ms
41,972 KB
testcase_15 AC 176 ms
41,756 KB
testcase_16 AC 179 ms
41,600 KB
testcase_17 AC 183 ms
41,752 KB
testcase_18 AC 182 ms
42,056 KB
testcase_19 AC 190 ms
41,880 KB
testcase_20 AC 204 ms
42,144 KB
testcase_21 AC 207 ms
42,204 KB
testcase_22 AC 210 ms
41,976 KB
testcase_23 AC 213 ms
42,344 KB
testcase_24 AC 217 ms
42,324 KB
testcase_25 AC 225 ms
42,440 KB
testcase_26 AC 223 ms
42,184 KB
testcase_27 AC 229 ms
42,340 KB
testcase_28 AC 222 ms
42,552 KB
testcase_29 AC 265 ms
47,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		sc.close();
		String[][] s = new String[n][n];
		for(int i = 0; i < n; i++) {
			for(int j = 0; j < n; j++) {
				s[i][j] = "";
			}
		}
		int x = 0;
		int y = 0;
		int k = 2;
		int t = 0;
		s[y][x] = String.format("%03d", 1);
		int cnt = 0;
		while(k <= n * n) {
//			cnt++;
//			System.out.println(y + " " + x);
//			System.out.println(t);
			if(t == 0) {
				if(x + 1 < n) {
					if(s[y][x + 1].equals("")) {
						s[y][x + 1] = String.format("%03d", k);
						k++;
						x++;
					}else {
						t = 1;
					}
				}else {
					t = 1;
				}
			}else if(t == 1) {
				if(y + 1 < n) {
					if(s[y + 1][x].equals("")) {
						s[y + 1][x] = String.format("%03d", k);
						k++;
						y++;
					}else {
						t = 2;
					}
				}else {
					t = 2;
				}
			}else if(t == 2) {
				if(x - 1 >= 0) {
					if(s[y][x - 1].equals("")) {
						s[y][x - 1] = String.format("%03d", k);
						k++;
						x--;
					}else {
						t = 3;
					}
				}else {
					t = 3;
				}
			}else if(t == 3) {
				if(y - 1 >= 0) {
					if(s[y - 1][x].equals("")) {
						s[y - 1][x] = String.format("%03d", k);
						k++;
						y--;
					}else {
						t = 0;
					}
				}else {
					t = 0;
				}
			}
		}
		for(int i = 0; i < n; i++) {
			for(int j = 0; j < n; j++) {
				if(j == n - 1) {
					System.out.println(s[i][j]);
				}else {
					System.out.print(s[i][j] +" ");
				}
			}
		}
	}
}
0