結果

問題 No.401 数字の渦巻き
ユーザー fjafjafjafjafjafja
提出日時 2017-09-11 01:41:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 1,414 bytes
コンパイル時間 3,551 ms
コンパイル使用メモリ 77,376 KB
実行使用メモリ 42,436 KB
最終ジャッジ日時 2024-11-07 12:56:20
合計ジャッジ時間 9,519 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,524 KB
testcase_01 AC 129 ms
41,152 KB
testcase_02 AC 127 ms
41,524 KB
testcase_03 AC 130 ms
41,244 KB
testcase_04 AC 116 ms
40,492 KB
testcase_05 AC 121 ms
40,376 KB
testcase_06 AC 137 ms
41,552 KB
testcase_07 AC 138 ms
41,272 KB
testcase_08 AC 146 ms
41,512 KB
testcase_09 AC 146 ms
40,488 KB
testcase_10 AC 152 ms
41,388 KB
testcase_11 AC 156 ms
41,812 KB
testcase_12 AC 148 ms
40,672 KB
testcase_13 AC 148 ms
40,680 KB
testcase_14 AC 175 ms
41,688 KB
testcase_15 AC 174 ms
41,784 KB
testcase_16 AC 180 ms
41,784 KB
testcase_17 AC 171 ms
40,636 KB
testcase_18 AC 171 ms
41,656 KB
testcase_19 AC 187 ms
41,952 KB
testcase_20 AC 181 ms
40,952 KB
testcase_21 AC 187 ms
41,704 KB
testcase_22 AC 179 ms
41,756 KB
testcase_23 AC 175 ms
41,880 KB
testcase_24 AC 191 ms
42,016 KB
testcase_25 AC 195 ms
42,032 KB
testcase_26 AC 198 ms
42,180 KB
testcase_27 AC 176 ms
41,196 KB
testcase_28 AC 203 ms
42,280 KB
testcase_29 AC 196 ms
42,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N401
{

	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		int N=sc.nextInt();
		int drc=0;
		int now=1;
		int i=0,j=0;
		int[][] h=new int[N][N];

		for(int k=0;k<N;k++)
			for(int l=0;l<N;l++)
			{
				h[k][l]=0;
			}
		h[0][0]=1;

		while(now!=N*N)
		{
			switch (drc%4)
			{
				case 0:
					while(j+1<N&&h[i][j+1]==0)
					{
						h[i][++j]=++now;
						//System.out.println("h["+i+"]["+j+"]="+now);
					}
					drc++;
					break;
				case 1:
					while(i+1<N&&h[i+1][j]==0)
					{
						h[++i][j]=++now;
						//System.out.println("h["+i+"]["+j+"]="+now);
					}
					drc++;
					break;
				case 2:
					while(0<=j-1&&h[i][j-1]==0)
					{
						h[i][--j]=++now;
						//System.out.println("h["+i+"]["+j+"]="+now);
					}
					drc++;
					break;
				case 3:
					while(0<=i-1&&h[i-1][j]==0)
					{
						h[--i][j]=++now;
						//System.out.println("h["+i+"]["+j+"]="+now);
					}
					drc++;
					break;

			}
		}


		for(int ii=0;ii<N;ii++)
		{
			for(int jj=0;jj<N;jj++)
			{
				if(h[ii][jj]<=9)
				{
					System.out.printf("00%d",h[ii][jj]);
				}
				else if(10<=h[ii][jj]&&h[ii][jj]<=99)
				{
					System.out.printf("0%d",h[ii][jj]);
				}
				else if(100<=h[ii][jj])
				{
					System.out.printf("%d",h[ii][jj]);
				}

				if(jj==N-1){System.out.println();}
				else{System.out.print(" ");}
			}
		}


	}

}
0