結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-18 21:38:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 1,383 bytes
コンパイル時間 3,917 ms
コンパイル使用メモリ 79,460 KB
実行使用メモリ 41,656 KB
最終ジャッジ日時 2024-10-09 20:38:10
合計ジャッジ時間 7,573 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,952 KB
testcase_01 AC 128 ms
41,240 KB
testcase_02 AC 127 ms
41,240 KB
testcase_03 AC 114 ms
40,116 KB
testcase_04 AC 131 ms
41,144 KB
testcase_05 AC 129 ms
41,184 KB
testcase_06 AC 134 ms
41,172 KB
testcase_07 AC 132 ms
41,092 KB
testcase_08 AC 130 ms
41,112 KB
testcase_09 AC 135 ms
41,292 KB
testcase_10 AC 132 ms
41,276 KB
testcase_11 AC 130 ms
40,960 KB
testcase_12 AC 129 ms
41,324 KB
testcase_13 AC 129 ms
41,556 KB
testcase_14 AC 148 ms
41,360 KB
testcase_15 AC 128 ms
41,656 KB
testcase_16 AC 124 ms
41,160 KB
testcase_17 AC 126 ms
41,424 KB
testcase_18 AC 130 ms
41,340 KB
testcase_19 AC 129 ms
41,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise95{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    ArrayList<Integer> a = new ArrayList<Integer>();
    for(int i = 1; i < 16; i++){
      a.add(i);
    }
    a.add(0);
    ArrayList<Integer> q = new ArrayList<Integer>();
    for(int i = 0; i < 16; i++){
      q.add(sc.nextInt());
    }
    while(q.indexOf(0) != 15){
      int x = q.indexOf(0);
      if (x > 3) {
        if(q.get(x - 4) == a.get(x)){
          int y = q.get(x - 4);
          q.set(x - 4, q.get(x));
          q.set(x, y);
          continue;
        }
      }

      if(x % 4 != 3){
        if(q.get(x + 1) == a.get(x)){
          int y = q.get(x + 1);
          q.set(x + 1, q.get(x));
          q.set(x, y);
          continue;
        }
      }

      if(x < 12){
        if(q.get(x + 4) == a.get(x)){
          int y = q.get(x + 4);
          q.set(x + 4, q.get(x));
          q.set(x, y);
          continue;
        }
      }

      if (x % 4 != 0) {
        if(q.get(x - 1) == a.get(x)){
          int y = q.get(x - 1);
          q.set(x - 1, q.get(x));
          q.set(x, y);
          continue;
        }
      }

      break;
    }

    Integer[] ad = (Integer[])a.toArray(new Integer[16]);
    Integer[] qd = (Integer[])q.toArray(new Integer[16]);
    System.out.println((Arrays.equals(ad, qd))? "Yes" : "No");
  }
}
0