結果

問題 No.401 数字の渦巻き
ユーザー aaaaasatoriaaaaasatori
提出日時 2018-02-17 13:53:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 948 bytes
コンパイル時間 3,655 ms
コンパイル使用メモリ 79,088 KB
実行使用メモリ 60,616 KB
最終ジャッジ日時 2024-06-24 12:09:45
合計ジャッジ時間 10,342 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,932 KB
testcase_01 AC 135 ms
53,948 KB
testcase_02 AC 137 ms
53,968 KB
testcase_03 AC 139 ms
53,964 KB
testcase_04 AC 140 ms
54,048 KB
testcase_05 AC 144 ms
54,284 KB
testcase_06 AC 149 ms
54,484 KB
testcase_07 AC 156 ms
54,188 KB
testcase_08 AC 156 ms
54,152 KB
testcase_09 AC 159 ms
54,356 KB
testcase_10 AC 161 ms
54,380 KB
testcase_11 AC 163 ms
54,308 KB
testcase_12 AC 168 ms
54,592 KB
testcase_13 AC 170 ms
54,400 KB
testcase_14 AC 176 ms
54,460 KB
testcase_15 AC 175 ms
54,652 KB
testcase_16 AC 180 ms
54,208 KB
testcase_17 AC 182 ms
54,516 KB
testcase_18 AC 183 ms
54,400 KB
testcase_19 AC 194 ms
54,516 KB
testcase_20 AC 208 ms
54,560 KB
testcase_21 AC 210 ms
54,604 KB
testcase_22 AC 208 ms
54,484 KB
testcase_23 AC 215 ms
56,980 KB
testcase_24 AC 219 ms
54,596 KB
testcase_25 AC 220 ms
54,864 KB
testcase_26 AC 232 ms
54,660 KB
testcase_27 AC 236 ms
54,748 KB
testcase_28 AC 237 ms
54,704 KB
testcase_29 AC 272 ms
60,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No401 {
	static Scanner sc = new Scanner(System.in);
	static int N = sc.nextInt();
	static int masu[][] = new int[N][N];
	
	public static void main(String[] args) {
		
		masu[0][0] = 1;
		int x = 0,y = 0;
		int houkou = 0; //0:→ 1:↓ 2:← 3:↑
		for(int i = 2;i <= N*N;i++) {
			
			switch(houkou) {
			case 0:
				y++;
				if(y == N-1 || masu[x][y+1] != 0) {
					houkou = (houkou + 1) % 4;
				}
				break;
			case 1:
				x++;
				if(x == N-1 || masu[x+1][y] != 0) {
					houkou = (houkou + 1) % 4;
				}
				break;
			case 2:
				y--;
				if(y == 0 || masu[x][y-1] != 0) {
					houkou = (houkou + 1) % 4;
				}
				break;
			case 3:
				x--;
				if(masu[x-1][y] != 0) {
					houkou = (houkou + 1) % 4;
				}
			}
			masu[x][y] = i;
		}
		
		for(int i = 0;i < N;i++) {
			for(int j = 0;j < N;j++) {
				System.out.printf(String.format("%03d", masu[i][j]) + " ");
			}
			System.out.println();
		}
	}
}
0