結果

問題 No.13 囲みたい!
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-10-21 13:47:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,237 ms / 5,000 ms
コード長 598 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 263,676 KB
最終ジャッジ日時 2024-10-21 13:47:58
合計ジャッジ時間 7,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,264 KB
testcase_01 AC 38 ms
52,264 KB
testcase_02 AC 38 ms
53,204 KB
testcase_03 AC 56 ms
67,924 KB
testcase_04 AC 43 ms
59,980 KB
testcase_05 AC 4,237 ms
263,676 KB
testcase_06 AC 55 ms
65,868 KB
testcase_07 AC 408 ms
86,636 KB
testcase_08 AC 219 ms
82,716 KB
testcase_09 AC 219 ms
82,704 KB
testcase_10 AC 63 ms
76,104 KB
testcase_11 AC 160 ms
79,116 KB
testcase_12 AC 53 ms
69,844 KB
testcase_13 AC 78 ms
76,304 KB
testcase_14 AC 82 ms
76,348 KB
testcase_15 AC 42 ms
59,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

w,h=map(int,input().split())
m=[list(map(int,input().split())) for i in range(h)]
v=[[0]*w for i in range(h)]
for i in range(h):
  for j in range(w):
    v=[[0]*w for x in range(h)]
    x,y=i,j
    v[x][y]=1
    q=[(x,y,x,y)]
    for x,y,xxx,yyy in q:
      dx,dy=1,0
      for _ in range(4):
        xx,yy=x+dx,y+dy
        if 0<=xx<h and 0<=yy<w:
          if m[xx][yy]==m[x][y]:
            if v[xx][yy]==0:
              v[xx][yy]=1
              q+=[(xx,yy,x,y)]
            elif (xx,yy)!=(xxx,yyy):
              print("possible")
              exit()
        dx,dy=-dy,dx
print("impossible")
0