結果

問題 No.179 塗り分け
ユーザー AEnAEn
提出日時 2022-05-13 14:09:37
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,040 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,392 KB
最終ジャッジ日時 2024-07-21 12:11:02
合計ジャッジ時間 5,675 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 40 ms
52,864 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 71 ms
71,808 KB
testcase_07 AC 40 ms
52,608 KB
testcase_08 WA -
testcase_09 AC 48 ms
60,928 KB
testcase_10 AC 100 ms
76,692 KB
testcase_11 AC 95 ms
76,544 KB
testcase_12 AC 180 ms
77,248 KB
testcase_13 AC 49 ms
59,776 KB
testcase_14 AC 41 ms
53,120 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 39 ms
52,608 KB
testcase_17 AC 39 ms
51,840 KB
testcase_18 WA -
testcase_19 AC 102 ms
76,544 KB
testcase_20 AC 40 ms
52,352 KB
testcase_21 AC 40 ms
52,608 KB
testcase_22 AC 282 ms
77,108 KB
testcase_23 AC 163 ms
76,912 KB
testcase_24 AC 302 ms
77,056 KB
testcase_25 AC 267 ms
76,672 KB
testcase_26 AC 93 ms
76,544 KB
testcase_27 AC 116 ms
76,692 KB
testcase_28 AC 96 ms
76,684 KB
testcase_29 AC 117 ms
77,352 KB
testcase_30 AC 90 ms
76,544 KB
testcase_31 AC 118 ms
77,392 KB
testcase_32 AC 92 ms
76,416 KB
testcase_33 AC 125 ms
77,264 KB
testcase_34 AC 96 ms
76,672 KB
testcase_35 AC 122 ms
77,020 KB
testcase_36 AC 41 ms
52,352 KB
testcase_37 AC 39 ms
52,096 KB
testcase_38 AC 40 ms
52,608 KB
testcase_39 AC 40 ms
52,096 KB
testcase_40 AC 40 ms
52,480 KB
testcase_41 AC 39 ms
52,608 KB
testcase_42 AC 39 ms
52,608 KB
testcase_43 AC 59 ms
66,816 KB
testcase_44 AC 96 ms
76,416 KB
testcase_45 AC 49 ms
60,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
c = []
cnt = 0
for _ in range(H):
    s = list(input())
    cnt += s.count('#')
    c.append(s)
if cnt == 0 or cnt%2==1:
    print('NO')
    exit()

def solve(i, j):
    w1, w2 = [], []
    w1.append([0, H, 1])
    w2.append([0, W, 1])
    w1.append([H-1, -1, -1])
    w2.append([W-1, -1, -1])
    p, q = w1[i<0], w2[j<0]
    b = set()
    for x in range(p[0], p[1], p[2]):
        for y in range(q[0], q[1], q[2]):
            if x+i<0 or x+i>H-1 or y+j<0 or y+j>W-1:
                if (x, y) not in b and c[x][y]=='#':
                    return False
                else:
                    continue
            if (x, y) in b or c[x][y] == '.':
                continue
            b.add((x, y))
            if c[x+i][y+j]=='.':
                return False
            else:
                b.add((x+i, y+j))
    return True

for i in range(-H+1, H):
    for j in range(-W+1, W):
        if i == j:
            continue
        if solve(i, j):
            print('YES')
            exit()
print('NO')
0