結果

問題 No.179 塗り分け
ユーザー lloyzlloyz
提出日時 2023-05-25 00:07:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 3,000 ms
コード長 1,325 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 81,856 KB
実行使用メモリ 76,920 KB
最終ジャッジ日時 2024-06-06 09:22:04
合計ジャッジ時間 4,904 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 38 ms
52,736 KB
testcase_06 AC 41 ms
58,368 KB
testcase_07 AC 40 ms
57,472 KB
testcase_08 AC 130 ms
76,288 KB
testcase_09 AC 132 ms
76,160 KB
testcase_10 AC 51 ms
65,920 KB
testcase_11 AC 51 ms
65,792 KB
testcase_12 AC 130 ms
76,288 KB
testcase_13 AC 40 ms
57,856 KB
testcase_14 AC 43 ms
60,544 KB
testcase_15 AC 36 ms
51,840 KB
testcase_16 AC 37 ms
51,968 KB
testcase_17 AC 35 ms
51,712 KB
testcase_18 AC 66 ms
76,288 KB
testcase_19 AC 67 ms
76,416 KB
testcase_20 AC 39 ms
57,856 KB
testcase_21 AC 40 ms
57,984 KB
testcase_22 AC 177 ms
76,920 KB
testcase_23 AC 56 ms
67,840 KB
testcase_24 AC 140 ms
76,160 KB
testcase_25 AC 49 ms
65,920 KB
testcase_26 AC 76 ms
75,904 KB
testcase_27 AC 135 ms
76,160 KB
testcase_28 AC 70 ms
76,084 KB
testcase_29 AC 144 ms
76,160 KB
testcase_30 AC 101 ms
76,544 KB
testcase_31 AC 129 ms
76,416 KB
testcase_32 AC 91 ms
76,232 KB
testcase_33 AC 146 ms
76,288 KB
testcase_34 AC 84 ms
76,544 KB
testcase_35 AC 145 ms
76,672 KB
testcase_36 AC 36 ms
52,096 KB
testcase_37 AC 36 ms
52,096 KB
testcase_38 AC 36 ms
51,712 KB
testcase_39 AC 36 ms
52,096 KB
testcase_40 AC 38 ms
57,856 KB
testcase_41 AC 36 ms
51,712 KB
testcase_42 AC 39 ms
56,960 KB
testcase_43 AC 50 ms
73,144 KB
testcase_44 AC 75 ms
75,648 KB
testcase_45 AC 44 ms
60,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
F = [list(input()) for _ in range(h)]

c = 0
for i in range(h):
    for j in range(w):
        if F[i][j] == '#':
            c += 1
if c == 0 or c % 2 == 1:
    print("NO")
    exit()

for di in range(h):
    for dj in range(-w + 1, w):
        if di == 0 and dj == 0:
            continue
        C = [[None for _ in range(w)] for _ in range(h)]
        flag = True
        for i in range(h):
            for j in range(w):
                if F[i][j] == '#' and C[i][j] == None:
                    C[i][j] = 'R'
                    if 0 <= i + di < h and 0 <= j + dj < w:
                        if F[i + di][j + dj] == '#' and C[i + di][j + dj] == None:
                            C[i + di][j + dj] = 'B'
                        else:
                            flag = False
                            break
                    else:
                        flag = False
                        break
            if not flag:
                break
        if flag:
            for i in range(h):
                for j in range(w):
                    if F[i][j] == '#' and C[i][j] == None:
                        flag = False
                        break
                if not flag:
                    break
        if flag:
            print("YES")
            exit()
print("NO")
0