結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー mobius_bkstmobius_bkst
提出日時 2015-06-19 22:52:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,728 bytes
コンパイル時間 3,203 ms
コンパイル使用メモリ 79,260 KB
実行使用メモリ 52,256 KB
最終ジャッジ日時 2024-07-07 04:10:02
合計ジャッジ時間 4,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 51 ms
50,404 KB
testcase_02 AC 49 ms
50,312 KB
testcase_03 AC 51 ms
50,580 KB
testcase_04 AC 52 ms
52,200 KB
testcase_05 AC 51 ms
50,124 KB
testcase_06 AC 50 ms
50,356 KB
testcase_07 AC 51 ms
50,376 KB
testcase_08 AC 50 ms
50,320 KB
testcase_09 AC 51 ms
50,544 KB
testcase_10 AC 50 ms
50,348 KB
testcase_11 AC 51 ms
50,340 KB
testcase_12 WA -
testcase_13 AC 49 ms
50,332 KB
testcase_14 AC 52 ms
50,304 KB
testcase_15 AC 52 ms
50,444 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 52 ms
50,276 KB
testcase_19 AC 52 ms
49,872 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++) {
                    if (goal[i][j] == 0) {
                        continue;
                    }
                    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