結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー ぴろずぴろず
提出日時 2015-06-19 22:33:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 1,082 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 77,696 KB
実行使用メモリ 54,304 KB
最終ジャッジ日時 2024-07-07 04:06:22
合計ジャッジ時間 4,447 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
52,972 KB
testcase_01 AC 107 ms
53,156 KB
testcase_02 AC 97 ms
54,068 KB
testcase_03 AC 100 ms
52,916 KB
testcase_04 AC 110 ms
54,012 KB
testcase_05 AC 104 ms
53,040 KB
testcase_06 AC 95 ms
52,444 KB
testcase_07 AC 108 ms
54,272 KB
testcase_08 AC 98 ms
52,660 KB
testcase_09 AC 107 ms
53,968 KB
testcase_10 AC 113 ms
53,972 KB
testcase_11 AC 114 ms
54,020 KB
testcase_12 AC 105 ms
52,760 KB
testcase_13 AC 114 ms
54,304 KB
testcase_14 AC 99 ms
52,740 KB
testcase_15 AC 107 ms
53,864 KB
testcase_16 AC 98 ms
52,912 KB
testcase_17 AC 108 ms
53,960 KB
testcase_18 AC 97 ms
52,568 KB
testcase_19 AC 108 ms
54,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no228;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		int[] di = {0,-1,0,1};
		int[] dj = {1,0,-1,0};
		Scanner sc = new Scanner(System.in);
		int[][] map = new int[4][4];
		boolean[][] moved = new boolean[4][4];
		int bi = 0, bj = 0;
		for(int i=0;i<4;i++) {
			for(int j=0;j<4;j++) {
				map[i][j] = sc.nextInt();
				if (map[i][j] == 0) {
					bi = i;
					bj = j;
				}
			}
		}
		while(true) {
			boolean update = false;
			for(int k=0;k<4;k++) {
				int ni = bi + di[k];
				int nj = bj + dj[k];
				if (ni < 0 || ni >= 4 || nj < 0 || nj >= 4) {
					continue;
				}
				if (!moved[ni][nj] && map[ni][nj] == (bi * 4 + bj + 1)) {
					map[bi][bj] = bi * 4 + bj + 1;
					map[ni][nj] = 0;
					moved[bi][bj] = true;
					bi = ni;
					bj = nj;
					update = true;
					break;
				}
			}
			if (!update) {
				break;
			}
		}
		boolean ans = true;
		for(int i=0;i<4;i++) {
			for(int j=0;j<4;j++) {
				if (map[i][j] != (i * 4 + j + 1) % 16) {
					ans = false;
				}
			}
		}
		System.out.println(ans ? "Yes" : "No");
	}

}
0