結果

問題 No.13 囲みたい!
ユーザー ああいいああいい
提出日時 2022-03-02 20:42:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 5,000 ms
コード長 836 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 76,596 KB
最終ジャッジ日時 2024-07-16 11:20:33
合計ジャッジ時間 1,693 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,936 KB
testcase_01 AC 34 ms
53,196 KB
testcase_02 AC 35 ms
53,700 KB
testcase_03 AC 49 ms
66,608 KB
testcase_04 AC 39 ms
60,376 KB
testcase_05 AC 60 ms
72,100 KB
testcase_06 AC 51 ms
66,976 KB
testcase_07 AC 76 ms
76,596 KB
testcase_08 AC 56 ms
67,824 KB
testcase_09 AC 53 ms
67,988 KB
testcase_10 AC 48 ms
64,164 KB
testcase_11 AC 49 ms
64,220 KB
testcase_12 AC 45 ms
61,008 KB
testcase_13 AC 50 ms
63,684 KB
testcase_14 AC 52 ms
65,484 KB
testcase_15 AC 34 ms
53,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

W,H = map(int,input().split())

S = [list(map(int,input().split())) for _ in range(H)]

memo = [[0] * W for _ in range(H)]
import sys
for h in range(H):
    for w in range(W):
        if memo[h][w] == 1:continue
        stack = [(h,w,-1,-1)]
        memo[h][w] = 1
        while stack:
            h,w,bh,bw = stack.pop()
            for i,j in [(1,0),(-1,0),(0,1),(0,-1)]:
                if 0 <= h + i < H and 0 <= w + j < W:
                    if h + i != bh or w + j != bw:
                        if S[h+i][w+j] == S[h][w]:
                            if memo[h+i][w+j] == 1:
                                print("possible")
                                exit()
                            else:
                                stack.append((h+i,w+j,h,w))
                                memo[h+i][w+j] = 1
print("impossible")
0