結果

問題 No.401 数字の渦巻き
ユーザー uafr_csuafr_cs
提出日時 2016-07-22 22:52:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,333 bytes
コンパイル時間 2,101 ms
コンパイル使用メモリ 79,004 KB
実行使用メモリ 48,592 KB
最終ジャッジ日時 2024-11-06 09:10:54
合計ジャッジ時間 8,664 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,736 KB
testcase_01 AC 140 ms
41,100 KB
testcase_02 AC 122 ms
40,312 KB
testcase_03 AC 132 ms
41,588 KB
testcase_04 AC 122 ms
40,100 KB
testcase_05 AC 139 ms
41,356 KB
testcase_06 AC 142 ms
41,372 KB
testcase_07 AC 147 ms
41,484 KB
testcase_08 AC 154 ms
41,336 KB
testcase_09 AC 160 ms
41,484 KB
testcase_10 AC 161 ms
41,504 KB
testcase_11 AC 166 ms
41,848 KB
testcase_12 AC 174 ms
41,560 KB
testcase_13 AC 177 ms
41,688 KB
testcase_14 AC 172 ms
41,452 KB
testcase_15 AC 181 ms
41,684 KB
testcase_16 AC 189 ms
42,596 KB
testcase_17 AC 230 ms
42,016 KB
testcase_18 AC 200 ms
41,884 KB
testcase_19 AC 212 ms
42,820 KB
testcase_20 AC 200 ms
42,048 KB
testcase_21 AC 205 ms
42,392 KB
testcase_22 AC 218 ms
42,000 KB
testcase_23 AC 228 ms
42,596 KB
testcase_24 AC 224 ms
42,328 KB
testcase_25 AC 230 ms
42,300 KB
testcase_26 AC 236 ms
42,360 KB
testcase_27 AC 234 ms
42,324 KB
testcase_28 AC 232 ms
42,540 KB
testcase_29 AC 263 ms
48,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.LinkedList;
import java.util.Scanner;
import java.util.Set;

public class Main {
	
	public static final int[][] move_dirs = {
		{ 1, 0},
		{ 0, 1},
		{-1, 0},
		{ 0,-1}
	};
	
	public static boolean in_range(int x, int y, int W, int H){
		return 0 <= x && x < W && 0 <= y && y < H;
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final int N = sc.nextInt();
		
		int[][] map = new int[N][N];
		for(int i = 0; i < N; i++){
			for(int j = 0; j < N; j++){
				map[i][j] = Integer.MAX_VALUE;
			}
		}
		int cx = 0, cy = 0, dir = 0;
		int cnt = 1;
		
		while(map[cy][cx] >= cnt){
			map[cy][cx] = cnt;
			cnt++;
			
			//System.out.println(cy + " " + cx);
			
			for(int next = 0; next < move_dirs.length; next++){
				final int next_dir = (dir + next) % move_dirs.length;
				
				final int nx = cx + move_dirs[next_dir][0];
				final int ny = cy + move_dirs[next_dir][1];
				
				if(!in_range(nx, ny, N, N)){
					continue;
				}else if(map[ny][nx] < cnt){
					continue;
				}else{
					cx = nx;
					cy = ny;
					dir = next_dir;
					break;
				}
			}
		}
		
		for(int i = 0; i < N; i++){
			for(int j = 0; j < N; j++){
				System.out.printf("%s%03d", j == 0 ? "" : " ", map[i][j]);
			}
			System.out.println();
		}
	}

}
0