結果
問題 | No.13 囲みたい! |
ユーザー | Kude |
提出日時 | 2020-09-03 20:47:45 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 78 ms / 5,000 ms |
コード長 | 755 bytes |
コンパイル時間 | 201 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 76,544 KB |
最終ジャッジ日時 | 2024-11-24 01:09:32 |
合計ジャッジ時間 | 2,004 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
51,840 KB |
testcase_01 | AC | 36 ms
51,968 KB |
testcase_02 | AC | 40 ms
51,872 KB |
testcase_03 | AC | 63 ms
70,272 KB |
testcase_04 | AC | 63 ms
68,736 KB |
testcase_05 | AC | 58 ms
68,608 KB |
testcase_06 | AC | 78 ms
76,416 KB |
testcase_07 | AC | 77 ms
76,544 KB |
testcase_08 | AC | 49 ms
65,280 KB |
testcase_09 | AC | 49 ms
65,792 KB |
testcase_10 | AC | 46 ms
61,316 KB |
testcase_11 | AC | 48 ms
64,384 KB |
testcase_12 | AC | 45 ms
60,160 KB |
testcase_13 | AC | 51 ms
63,488 KB |
testcase_14 | AC | 47 ms
62,720 KB |
testcase_15 | AC | 37 ms
52,736 KB |
ソースコード
w, h = map(int, input().split()) m = [list(map(int, input().split())) for _ in range(h)] pre = [[None] * w for _ in range(h)] ok = False for i in range(h): for j in range(w): if pre[i][j] is None: num = m[i][j] pre[i][j] = i, j q = [(i, j)] while q: x, y = q.pop() for nx, ny in (x-1, y), (x+1, y), (x, y-1), (x, y+1): if 0 <= nx < h and 0 <= ny < w and m[nx][ny] == num and (nx, ny) != pre[x][y]: if pre[nx][ny] is None: pre[nx][ny] = x, y q.append((nx, ny)) else: ok = True print('im' * (not ok) + 'possible')