結果

問題 No.179 塗り分け
ユーザー AT274_AT274_
提出日時 2019-10-23 21:31:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 554 ms / 3,000 ms
コード長 950 bytes
コンパイル時間 403 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 78,656 KB
最終ジャッジ日時 2024-07-23 15:02:51
合計ジャッジ時間 10,858 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,008 KB
testcase_01 AC 36 ms
53,188 KB
testcase_02 AC 40 ms
58,696 KB
testcase_03 AC 37 ms
52,868 KB
testcase_04 AC 43 ms
59,640 KB
testcase_05 AC 131 ms
76,620 KB
testcase_06 AC 71 ms
75,980 KB
testcase_07 AC 36 ms
53,156 KB
testcase_08 AC 326 ms
77,344 KB
testcase_09 AC 338 ms
77,232 KB
testcase_10 AC 189 ms
76,820 KB
testcase_11 AC 189 ms
76,988 KB
testcase_12 AC 302 ms
77,548 KB
testcase_13 AC 46 ms
61,368 KB
testcase_14 AC 51 ms
65,992 KB
testcase_15 AC 36 ms
52,524 KB
testcase_16 AC 37 ms
52,992 KB
testcase_17 AC 36 ms
52,068 KB
testcase_18 AC 255 ms
77,244 KB
testcase_19 AC 251 ms
77,300 KB
testcase_20 AC 439 ms
78,100 KB
testcase_21 AC 395 ms
78,016 KB
testcase_22 AC 554 ms
77,784 KB
testcase_23 AC 276 ms
76,888 KB
testcase_24 AC 349 ms
77,852 KB
testcase_25 AC 218 ms
76,924 KB
testcase_26 AC 279 ms
77,164 KB
testcase_27 AC 456 ms
78,656 KB
testcase_28 AC 298 ms
76,952 KB
testcase_29 AC 539 ms
78,184 KB
testcase_30 AC 385 ms
77,568 KB
testcase_31 AC 524 ms
77,960 KB
testcase_32 AC 335 ms
78,036 KB
testcase_33 AC 497 ms
78,436 KB
testcase_34 AC 337 ms
77,716 KB
testcase_35 AC 494 ms
78,308 KB
testcase_36 AC 39 ms
53,816 KB
testcase_37 AC 39 ms
53,268 KB
testcase_38 AC 37 ms
52,268 KB
testcase_39 AC 37 ms
53,300 KB
testcase_40 AC 42 ms
60,412 KB
testcase_41 AC 36 ms
52,768 KB
testcase_42 AC 40 ms
58,368 KB
testcase_43 AC 94 ms
76,212 KB
testcase_44 AC 141 ms
76,788 KB
testcase_45 AC 59 ms
69,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

black = 0
for g in G:
    black += g.count('#')
if black == 0:
    print('NO')
    exit()


break_flg = False
for d in range(-H + 1, H):
    for r in range(-W + 1, W):

        if (d == 0) and (r == 0):
            continue

        T = [[0 if G[i][j] == '#' else -1 for j in range(W)] for i in range(H)]
        for i in range(H):
            for j in range(W):
                if T[i][j] == 0:
                    if not ((0 <= i + d < H) and (0 <= j + r < W)):
                        break_flg = True
                        break

                    if T[i + d][j + r] == 0:
                        T[i + d][j + r] += 1
                    else:
                        break_flg = True
                        break

            if break_flg:
                break_flg = False
                break

        else:
            print('YES')
            exit()

print('NO')
0