結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー mobius_bkstmobius_bkst
提出日時 2015-06-19 22:50:12
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,629 bytes
コンパイル時間 3,557 ms
コンパイル使用メモリ 79,608 KB
実行使用メモリ 37,196 KB
最終ジャッジ日時 2024-07-07 04:09:30
合計ジャッジ時間 5,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 54 ms
36,952 KB
testcase_02 AC 53 ms
36,744 KB
testcase_03 AC 54 ms
36,904 KB
testcase_04 AC 53 ms
36,964 KB
testcase_05 AC 54 ms
36,628 KB
testcase_06 AC 53 ms
36,612 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 55 ms
36,768 KB
testcase_14 AC 55 ms
36,532 KB
testcase_15 AC 54 ms
37,072 KB
testcase_16 WA -
testcase_17 AC 55 ms
37,056 KB
testcase_18 AC 55 ms
37,068 KB
testcase_19 AC 55 ms
36,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No278 {
    public static void main(String[] args) {
        try {
            int goal[][] = { { 1, 2, 3, 4 }, { 5, 6, 7, 8 }, { 9, 10, 11, 12 },
                    { 13, 14, 15, 0 } };
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            int start[][] = new int[4][4];
            for (int i = 0; i < 4; i++) {
                start[i] = strToIntArray(br.readLine());
            }
            String str = "Yes";
            for (int i = 0; i < 4; i++) {
                for (int j = 0; j < 4; j++) {
                    for (int j2 = 0; j2 < 4; j2++) {
                        for (int k = 0; k < 4; k++) {
                            // 距離が2以上離れてたらむりだろ
                            if (goal[i][j] == start[j2][k]) {
                                if (1 < Math.abs(i - j2) + Math.abs(j - k)) {
                                    str = "No";
                                }
                            }
                        }
                    }
                }
            }
            System.out.println(str);
        } catch (Exception e) {
            e.printStackTrace();
            System.err.println("Error:" + e.getMessage());
        }
    }

    static int[] strToIntArray(String S) {
        String[] strArray = S.split(" ");
        int[] intArray = new int[strArray.length];
        for (int i = 0; i < strArray.length; i++) {
            intArray[i] = Integer.parseInt(strArray[i]);
        }
        return intArray;
    }
}
0