結果

問題 No.179 塗り分け
ユーザー MIKI TakushiMIKI Takushi
提出日時 2019-01-03 17:31:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 742 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-11-23 22:30:08
合計ジャッジ時間 95,904 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
21,504 KB
testcase_01 AC 30 ms
16,128 KB
testcase_02 AC 31 ms
16,000 KB
testcase_03 AC 30 ms
17,700 KB
testcase_04 AC 31 ms
16,128 KB
testcase_05 AC 813 ms
21,632 KB
testcase_06 AC 209 ms
16,000 KB
testcase_07 WA -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 41 ms
17,828 KB
testcase_14 AC 37 ms
16,128 KB
testcase_15 AC 30 ms
17,700 KB
testcase_16 AC 30 ms
16,256 KB
testcase_17 AC 29 ms
17,696 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 31 ms
10,880 KB
testcase_37 AC 30 ms
10,880 KB
testcase_38 AC 30 ms
10,880 KB
testcase_39 AC 29 ms
10,752 KB
testcase_40 AC 31 ms
10,880 KB
testcase_41 AC 29 ms
10,752 KB
testcase_42 AC 30 ms
10,752 KB
testcase_43 AC 172 ms
10,752 KB
testcase_44 AC 928 ms
10,752 KB
testcase_45 AC 56 ms
26,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
from copy import deepcopy

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

def check(dh,dw):
    s2 = deepcopy(s)
    for hi in range(h):
        for wi in range(w):
            if s2[hi][wi]=="#":
                if h>hi+dh>=0 and w>wi+dw>=0:
                    if s2[hi+dh][wi+dw]=="#":
                        s2[hi][wi] = "r"
                        s2[hi+dh][wi+dw] = "b"
                    else:
                        return False
                else:
                    return False
    return True

for dh in range(1-h,h):
    for dw in range(1-w,w):
        if dh==0 and dw==0:
            continue
        if check(dh,dw):
            print("YES")
            exit()
print("NO")
0