結果

問題 No.179 塗り分け
ユーザー AEnAEn
提出日時 2022-05-13 13:57:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 992 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,996 KB
最終ジャッジ日時 2024-07-21 11:54:27
合計ジャッジ時間 4,507 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,608 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 WA -
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 43 ms
58,752 KB
testcase_07 AC 37 ms
52,352 KB
testcase_08 WA -
testcase_09 AC 48 ms
61,184 KB
testcase_10 AC 101 ms
76,668 KB
testcase_11 AC 97 ms
76,408 KB
testcase_12 WA -
testcase_13 AC 46 ms
61,184 KB
testcase_14 AC 38 ms
52,992 KB
testcase_15 AC 37 ms
52,224 KB
testcase_16 AC 37 ms
52,376 KB
testcase_17 AC 37 ms
52,352 KB
testcase_18 AC 39 ms
52,992 KB
testcase_19 AC 47 ms
61,064 KB
testcase_20 AC 38 ms
52,480 KB
testcase_21 AC 38 ms
52,480 KB
testcase_22 WA -
testcase_23 AC 38 ms
52,864 KB
testcase_24 WA -
testcase_25 AC 38 ms
52,352 KB
testcase_26 AC 94 ms
76,664 KB
testcase_27 WA -
testcase_28 AC 96 ms
76,928 KB
testcase_29 WA -
testcase_30 AC 84 ms
76,416 KB
testcase_31 WA -
testcase_32 AC 74 ms
75,216 KB
testcase_33 WA -
testcase_34 AC 94 ms
76,288 KB
testcase_35 WA -
testcase_36 AC 37 ms
51,968 KB
testcase_37 AC 37 ms
52,096 KB
testcase_38 WA -
testcase_39 AC 37 ms
52,072 KB
testcase_40 AC 37 ms
52,736 KB
testcase_41 AC 37 ms
52,608 KB
testcase_42 AC 38 ms
52,096 KB
testcase_43 AC 59 ms
68,352 KB
testcase_44 AC 94 ms
76,544 KB
testcase_45 AC 47 ms
60,928 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):
    r1, r2 = range(H), range(W)
    r11, r22 = reversed(range(H)), reversed(range(W))
    w1 = [r1, r11]
    w2 = [r2, r22]
    p, q = w1[i<0], w2[j<0]
    b = set()
    for x in p:
        for y in q:
            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