結果

問題 No.401 数字の渦巻き
ユーザー ぴろずぴろず
提出日時 2016-07-22 22:26:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 272 ms / 2,000 ms
コード長 684 bytes
コンパイル時間 3,050 ms
コンパイル使用メモリ 78,016 KB
実行使用メモリ 60,016 KB
最終ジャッジ日時 2024-11-06 08:57:31
合計ジャッジ時間 9,445 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,064 KB
testcase_01 AC 133 ms
53,928 KB
testcase_02 AC 134 ms
53,880 KB
testcase_03 AC 134 ms
54,204 KB
testcase_04 AC 139 ms
54,076 KB
testcase_05 AC 137 ms
54,064 KB
testcase_06 AC 146 ms
53,988 KB
testcase_07 AC 150 ms
54,072 KB
testcase_08 AC 150 ms
54,056 KB
testcase_09 AC 157 ms
54,260 KB
testcase_10 AC 158 ms
54,264 KB
testcase_11 AC 165 ms
54,256 KB
testcase_12 AC 168 ms
54,260 KB
testcase_13 AC 185 ms
54,264 KB
testcase_14 AC 184 ms
54,416 KB
testcase_15 AC 185 ms
54,036 KB
testcase_16 AC 195 ms
54,348 KB
testcase_17 AC 184 ms
54,156 KB
testcase_18 AC 200 ms
54,368 KB
testcase_19 AC 207 ms
54,260 KB
testcase_20 AC 215 ms
54,528 KB
testcase_21 AC 220 ms
54,336 KB
testcase_22 AC 219 ms
54,300 KB
testcase_23 AC 213 ms
54,212 KB
testcase_24 AC 218 ms
54,520 KB
testcase_25 AC 224 ms
54,764 KB
testcase_26 AC 233 ms
54,584 KB
testcase_27 AC 239 ms
54,852 KB
testcase_28 AC 236 ms
54,712 KB
testcase_29 AC 272 ms
60,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no402;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[][] a = new int[n][n];
		int di = 0, dj = 1;
		int ci = 0, cj = 0;
		for(int i=1;i<=n*n;i++) {
			a[ci][cj] = i;
			int ni = ci + di;
			int nj = cj + dj;
			if (ni < 0 || ni >= n || nj < 0 || nj >= n || a[ni][nj] != 0) {
				int temp = di;
				di = dj;
				dj = -temp;
			}
			ci = ci + di;
			cj = cj + dj;
		}
		for(int i=0;i<n;i++) {
			for(int j=0;j<n;j++) {
				if (j > 0) {
					System.out.print(' ');
				}
				System.out.print(String.format("%03d", a[i][j]));
			}
			System.out.println();
		}
	}

}
0