結果

問題 No.228 ゆきこちゃんの 15 パズル
ユーザー aka_satana_haaka_satana_ha
提出日時 2017-11-28 13:50:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 1,537 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-05 14:48:20
合計ジャッジ時間 1,497 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 29 ms
11,008 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 30 ms
10,880 KB
testcase_08 AC 30 ms
10,880 KB
testcase_09 AC 31 ms
10,880 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 30 ms
10,880 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

goal=[]
for i in range(4):
    line=[int(i) for i in input().split()]
    goal.append(line)
# print(goal)

#init
puzzle=[]
puzzle.append([1,2,3,4])
puzzle.append([5,6,7,8])
puzzle.append([9,10,11,12])
puzzle.append([13,14,15,0])

zero_pos=[3,3]
while(1):
    # print(zero_pos)
    # for i in range(4):
    #     print(puzzle[i])
    # print('\n')
    if puzzle==goal:
        print("Yes")
        break
    zero_pos_y=zero_pos[0]
    zero_pos_x=zero_pos[1]
    goal_num=goal[zero_pos_y][zero_pos_x]
    #↑
    if zero_pos_y!=0:
        if goal_num==puzzle[zero_pos_y-1][zero_pos_x]:
            zero_pos=[zero_pos_y-1,zero_pos_x]
            puzzle[zero_pos_y-1][zero_pos_x]=0
            puzzle[zero_pos_y][zero_pos_x]=goal_num
            continue
    #↓
    if zero_pos_y!=3:
        if goal_num==puzzle[zero_pos_y+1][zero_pos_x]:
            zero_pos=[zero_pos_y+1,zero_pos_x]
            puzzle[zero_pos_y+1][zero_pos_x]=0
            puzzle[zero_pos_y][zero_pos_x]=goal_num
            continue
    #←
    if zero_pos_x!=0:
        if goal_num==puzzle[zero_pos_y][zero_pos_x-1]:
            zero_pos=[zero_pos_y,zero_pos_x-1]
            puzzle[zero_pos_y][zero_pos_x-1]=0
            puzzle[zero_pos_y][zero_pos_x]=goal_num
            continue
    #→
    if zero_pos_x!=3:
        if goal_num==puzzle[zero_pos_y][zero_pos_x+1]:
            zero_pos=[zero_pos_y,zero_pos_x+1]
            puzzle[zero_pos_y][zero_pos_x+1]=0
            puzzle[zero_pos_y][zero_pos_x]=goal_num
            continue
    print("NO")
    break
0