結果
問題 |
No.13 囲みたい!
|
ユーザー |
|
提出日時 | 2020-12-31 11:05:40 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,029 bytes |
コンパイル時間 | 110 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-10-09 10:20:30 |
合計ジャッジ時間 | 1,580 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | WA * 14 RE * 2 |
ソースコード
def inner_range(y, x): return y >= 0 and x >= 0 and y < H and x < W def check(y, x, pre): matrix[y][x] = True dy = [1, 0, -1, 0] dx = [0, 1, 0, -1] for k in range(4): if pre == k: continue ny = y + dy[k] nx = x + dx[k] if not inner_range(ny, nx): continue if area[y][x] != area[ny][nx]: continue if matrix[ny][nx]: return True if check(ny, nx, (k + 2) % 4): return True return False W, H = map(int, input().split()) matrix = [[False for _ in range(W + 2)] for _ in range(H + 2)] area = [] for _ in range(H): area.append(list(map(int, input().split()))) judge = False for i in range(H): for j in range(W): if matrix[i][j]: continue judge = check(i, j, -1) if judge: break if judge: break if judge: print("possiple") else: print("impossiple")