結果

問題 No.179 塗り分け
ユーザー irumo8202irumo8202
提出日時 2022-01-30 09:45:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,206 ms / 3,000 ms
コード長 784 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,836 KB
実行使用メモリ 81,744 KB
最終ジャッジ日時 2024-06-11 08:10:06
合計ジャッジ時間 28,447 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,504 KB
testcase_01 AC 44 ms
54,272 KB
testcase_02 AC 56 ms
64,640 KB
testcase_03 AC 44 ms
54,016 KB
testcase_04 AC 55 ms
63,232 KB
testcase_05 AC 186 ms
76,928 KB
testcase_06 AC 140 ms
76,928 KB
testcase_07 AC 958 ms
79,680 KB
testcase_08 AC 920 ms
79,232 KB
testcase_09 AC 932 ms
79,456 KB
testcase_10 AC 1,206 ms
81,536 KB
testcase_11 AC 1,027 ms
81,024 KB
testcase_12 AC 1,014 ms
81,024 KB
testcase_13 AC 58 ms
67,456 KB
testcase_14 AC 61 ms
71,808 KB
testcase_15 AC 39 ms
53,504 KB
testcase_16 AC 40 ms
53,632 KB
testcase_17 AC 39 ms
53,504 KB
testcase_18 AC 1,072 ms
80,384 KB
testcase_19 AC 1,026 ms
80,924 KB
testcase_20 AC 1,036 ms
81,024 KB
testcase_21 AC 977 ms
80,000 KB
testcase_22 AC 996 ms
79,872 KB
testcase_23 AC 1,014 ms
81,280 KB
testcase_24 AC 1,004 ms
79,988 KB
testcase_25 AC 979 ms
80,460 KB
testcase_26 AC 1,049 ms
79,948 KB
testcase_27 AC 1,082 ms
81,664 KB
testcase_28 AC 1,088 ms
80,512 KB
testcase_29 AC 1,096 ms
81,536 KB
testcase_30 AC 1,158 ms
81,120 KB
testcase_31 AC 1,153 ms
81,664 KB
testcase_32 AC 1,145 ms
81,744 KB
testcase_33 AC 1,168 ms
81,024 KB
testcase_34 AC 1,125 ms
80,896 KB
testcase_35 AC 1,202 ms
81,516 KB
testcase_36 AC 41 ms
53,888 KB
testcase_37 AC 41 ms
54,272 KB
testcase_38 AC 40 ms
54,016 KB
testcase_39 AC 40 ms
54,144 KB
testcase_40 AC 48 ms
61,056 KB
testcase_41 AC 39 ms
53,888 KB
testcase_42 AC 47 ms
61,312 KB
testcase_43 AC 96 ms
76,288 KB
testcase_44 AC 203 ms
76,656 KB
testcase_45 AC 68 ms
73,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy


def check(dy, dx):
    T = copy.deepcopy(S)
    paint = False
    for y in range(H):
        for x in range(W):
            if T[y][x]:
                if 0 <= y + dy < H and 0 <= x + dx < W and T[y + dy][x + dx]:
                    T[y + dy][x + dx] = 0
                    paint = True
                else:
                    return 0
    return paint


H, W = map(int, input().split())
S = [[1 if x == "#" else 0 for x in input()] for _ in range(H)]

ok = False
for dy in range(H):
    for dx in range(W):
        if dy == dx == 0:
            continue
        ok |= check(dy, dx)

S = [*map(lambda x: x[::-1], S)]

for dy in range(H):
    for dx in range(W):
        if dy == dx == 0:
            continue
        ok |= check(dy, dx)

print("YES" if ok else "NO")
0