結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー rlangevinrlangevin
提出日時 2023-01-17 12:36:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 669 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 53,928 KB
最終ジャッジ日時 2024-06-10 17:11:29
合計ジャッジ時間 1,950 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,612 KB
testcase_01 AC 37 ms
52,888 KB
testcase_02 AC 38 ms
53,428 KB
testcase_03 AC 36 ms
53,076 KB
testcase_04 AC 37 ms
53,144 KB
testcase_05 AC 35 ms
53,844 KB
testcase_06 AC 36 ms
52,448 KB
testcase_07 AC 39 ms
52,820 KB
testcase_08 AC 38 ms
52,884 KB
testcase_09 AC 40 ms
52,140 KB
testcase_10 AC 38 ms
53,144 KB
testcase_11 AC 39 ms
53,928 KB
testcase_12 AC 39 ms
53,292 KB
testcase_13 AC 37 ms
52,476 KB
testcase_14 AC 40 ms
53,560 KB
testcase_15 AC 38 ms
53,224 KB
testcase_16 AC 39 ms
52,624 KB
testcase_17 AC 38 ms
53,248 KB
testcase_18 AC 38 ms
53,532 KB
testcase_19 AC 37 ms
53,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x, y):
    return (4 * x + y + 1)%16

A = []
nx, ny = 0, 0
for i in range(4):
    A.append(list(map(int, input().split())))
    for j in range(4):
        if A[i][j] == 0:
            nx = i
            ny = j

dx = [0, 1, 0, -1]
dy = [1, 0, -1, 0]
for _ in range(16):
    for k in range(4):
        x, y = nx + dx[k], ny + dy[k]
        if x < 0 or x > 3 or y < 0 or y > 3:
            continue
        if A[x][y] != f(nx, ny):
            continue
        A[x][y], A[nx][ny] = A[nx][ny], A[x][y]
        nx, ny = x, y
        break

for i in range(4):
    for j in range(4):
        if A[i][j] != f(i, j):
            print("No")
            exit()
print("Yes")
0