結果

問題 No.179 塗り分け
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-04-28 20:23:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 956 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-10-03 03:18:58
合計ジャッジ時間 5,198 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 80 ms
75,932 KB
testcase_06 AC 59 ms
71,680 KB
testcase_07 WA -
testcase_08 AC 121 ms
76,412 KB
testcase_09 AC 120 ms
76,240 KB
testcase_10 AC 90 ms
76,160 KB
testcase_11 AC 85 ms
76,348 KB
testcase_12 AC 126 ms
76,416 KB
testcase_13 AC 42 ms
52,864 KB
testcase_14 AC 46 ms
59,648 KB
testcase_15 AC 40 ms
51,456 KB
testcase_16 AC 39 ms
51,968 KB
testcase_17 WA -
testcase_18 AC 88 ms
76,160 KB
testcase_19 AC 90 ms
76,408 KB
testcase_20 AC 130 ms
76,476 KB
testcase_21 AC 139 ms
76,544 KB
testcase_22 AC 177 ms
76,384 KB
testcase_23 AC 89 ms
76,032 KB
testcase_24 AC 122 ms
76,032 KB
testcase_25 AC 91 ms
76,184 KB
testcase_26 AC 94 ms
76,176 KB
testcase_27 AC 114 ms
76,160 KB
testcase_28 AC 92 ms
75,904 KB
testcase_29 AC 132 ms
76,160 KB
testcase_30 AC 102 ms
76,144 KB
testcase_31 AC 116 ms
76,416 KB
testcase_32 AC 105 ms
76,288 KB
testcase_33 AC 127 ms
76,400 KB
testcase_34 AC 98 ms
76,544 KB
testcase_35 AC 126 ms
76,296 KB
testcase_36 AC 38 ms
52,608 KB
testcase_37 AC 41 ms
52,224 KB
testcase_38 AC 40 ms
52,464 KB
testcase_39 AC 38 ms
52,096 KB
testcase_40 AC 40 ms
52,224 KB
testcase_41 AC 39 ms
51,712 KB
testcase_42 AC 39 ms
52,224 KB
testcase_43 AC 56 ms
70,656 KB
testcase_44 AC 76 ms
75,904 KB
testcase_45 AC 49 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def inside(x, y):
    return 0 <= x < H and 0 <= y < W

def move(h, w):
    c = [[-1] * W for i in range(H)]
    for i in range(H):
        for j in range(W):
            # まだ塗られていない黒マスが見つかったら
            if s[i][j] == '#' and c[i][j] == -1:
                # このマスを赤に塗る
                c[i][j] = 0
                # 対応する黒マスがなければやめる
                ni = i + h; nj = j + w
                if not inside(ni, nj):
                    return False
                if s[ni][nj] != '#':
                    return False
                # 対応するマスを青に
                c[ni][nj] = 1

    return True


H, W = map(int, input().split())
s = []
for i in range(H):
    s.append(list(input()))

for h in range(-H, H):
    for w in range(-W, W):
        if h == w == 0:
            continue
        if move(h, w):
            print("YES")
            exit()
print("NO")
0