結果

問題 No.179 塗り分け
ユーザー rlangevinrlangevin
提出日時 2023-01-22 12:45:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 316 ms / 3,000 ms
コード長 1,150 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-06-24 17:28:08
合計ジャッジ時間 4,766 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 42 ms
52,096 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 75 ms
68,736 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 49 ms
58,880 KB
testcase_08 AC 49 ms
59,136 KB
testcase_09 AC 49 ms
59,008 KB
testcase_10 AC 53 ms
61,184 KB
testcase_11 AC 53 ms
60,800 KB
testcase_12 AC 316 ms
77,184 KB
testcase_13 AC 41 ms
52,352 KB
testcase_14 AC 43 ms
52,224 KB
testcase_15 AC 41 ms
52,480 KB
testcase_16 AC 41 ms
52,096 KB
testcase_17 AC 42 ms
51,968 KB
testcase_18 AC 76 ms
69,376 KB
testcase_19 AC 77 ms
70,144 KB
testcase_20 AC 162 ms
76,652 KB
testcase_21 AC 75 ms
68,608 KB
testcase_22 AC 77 ms
68,736 KB
testcase_23 AC 51 ms
59,648 KB
testcase_24 AC 71 ms
66,688 KB
testcase_25 AC 50 ms
59,392 KB
testcase_26 AC 55 ms
61,696 KB
testcase_27 AC 102 ms
76,416 KB
testcase_28 AC 66 ms
65,664 KB
testcase_29 AC 106 ms
76,160 KB
testcase_30 AC 106 ms
76,800 KB
testcase_31 AC 121 ms
76,800 KB
testcase_32 AC 102 ms
76,416 KB
testcase_33 AC 127 ms
76,416 KB
testcase_34 AC 93 ms
76,160 KB
testcase_35 AC 136 ms
76,288 KB
testcase_36 AC 42 ms
51,968 KB
testcase_37 AC 42 ms
52,352 KB
testcase_38 AC 42 ms
51,968 KB
testcase_39 AC 41 ms
51,968 KB
testcase_40 AC 42 ms
52,352 KB
testcase_41 AC 42 ms
52,224 KB
testcase_42 AC 43 ms
52,096 KB
testcase_43 AC 68 ms
66,304 KB
testcase_44 AC 76 ms
69,376 KB
testcase_45 AC 43 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
G = []
flag = 1
sx, sy = 0, 0
for i in range(H):
    G.append(list(input()))
    if flag:
        for j in range(W):
            if G[i][j] == "#":
                sx = i
                sy = j
                flag = 0
                break

s = (sx, sy)
for gx in range(H):
    for gy in range(W):
        g = (gx, gy)
        if G[gx][gy] != "#" or s == g:
            continue
        S = set()
        S.add(s)
        S.add(g)
        dx = g[0] - s[0]
        dy = g[1] - s[1]
        flag = 1
        for i in range(H):
            for j in range(W):
                if G[i][j] != "#":
                    continue
                if (i, j) in S:
                    continue
                nx = i + dx
                ny = j + dy
                if (nx, ny) in S:
                    continue
                if nx < 0 or nx > H - 1 or ny < 0 or ny > W - 1:
                    flag = 0
                    break
                if G[nx][ny] != "#":
                    flag = 0
                    break
                S.add((nx, ny))
        if flag:
            print("YES")
            exit()
print("NO")
0