結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー mlihua09mlihua09
提出日時 2020-09-18 16:08:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 859 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-06-22 08:01:00
合計ジャッジ時間 2,020 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,612 KB
testcase_01 AC 35 ms
53,012 KB
testcase_02 AC 39 ms
53,136 KB
testcase_03 AC 38 ms
53,836 KB
testcase_04 AC 38 ms
53,380 KB
testcase_05 AC 36 ms
52,608 KB
testcase_06 AC 40 ms
53,532 KB
testcase_07 AC 37 ms
53,852 KB
testcase_08 AC 37 ms
52,796 KB
testcase_09 AC 37 ms
52,760 KB
testcase_10 AC 37 ms
53,348 KB
testcase_11 AC 37 ms
53,476 KB
testcase_12 AC 36 ms
52,740 KB
testcase_13 AC 36 ms
53,092 KB
testcase_14 AC 37 ms
53,684 KB
testcase_15 AC 37 ms
53,140 KB
testcase_16 AC 38 ms
54,188 KB
testcase_17 AC 35 ms
53,340 KB
testcase_18 AC 36 ms
53,296 KB
testcase_19 AC 37 ms
53,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


A = [list(map(int, input().split())) for i in range(4)]

a = [[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12], [13, 14, 15, 0]]

for i in range(4):
    for j in range(4):
        if A[i][j] == 0:
            x = i
            y = j
        
while x != 3 or y != 3:
    
    if x > 0 and A[x - 1][y] == a[x][y]:
        A[x][y], A[x - 1][y] = A[x - 1][y], A[x][y]
        x -= 1
        
    elif x < 3 and A[x + 1][y] == a[x][y]:
        A[x][y], A[x + 1][y] = A[x + 1][y], A[x][y]
        x += 1
        
    elif y > 0 and A[x][y - 1] == a[x][y]:
        A[x][y], A[x][y - 1] = A[x][y - 1], A[x][y]
        y -= 1
        
    elif y < 3 and A[x][y + 1] == a[x][y]:
        A[x][y], A[x][y + 1] = A[x][y + 1], A[x][y]
        y += 1
    else:
        print('No')
        exit()
        
        
if A == a:
    print('Yes')
    
else:
    print('No')
        
0