結果

問題 No.179 塗り分け
ユーザー satoyuyapyaasatoyuyapyaa
提出日時 2024-11-24 21:13:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 3,000 ms
コード長 1,229 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 76,248 KB
最終ジャッジ日時 2024-11-24 21:13:51
合計ジャッジ時間 4,034 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,192 KB
testcase_01 AC 34 ms
53,148 KB
testcase_02 AC 35 ms
53,560 KB
testcase_03 AC 34 ms
52,956 KB
testcase_04 AC 37 ms
52,928 KB
testcase_05 AC 56 ms
69,960 KB
testcase_06 AC 34 ms
52,856 KB
testcase_07 AC 35 ms
52,268 KB
testcase_08 AC 45 ms
62,956 KB
testcase_09 AC 46 ms
67,704 KB
testcase_10 AC 40 ms
61,540 KB
testcase_11 AC 40 ms
61,128 KB
testcase_12 AC 82 ms
76,248 KB
testcase_13 AC 34 ms
52,824 KB
testcase_14 AC 33 ms
52,776 KB
testcase_15 AC 32 ms
52,692 KB
testcase_16 AC 36 ms
53,940 KB
testcase_17 AC 33 ms
52,696 KB
testcase_18 AC 42 ms
61,544 KB
testcase_19 AC 43 ms
62,796 KB
testcase_20 AC 62 ms
73,412 KB
testcase_21 AC 61 ms
72,644 KB
testcase_22 AC 87 ms
76,248 KB
testcase_23 AC 40 ms
59,992 KB
testcase_24 AC 58 ms
71,436 KB
testcase_25 AC 38 ms
58,636 KB
testcase_26 AC 44 ms
64,024 KB
testcase_27 AC 52 ms
70,904 KB
testcase_28 AC 45 ms
62,800 KB
testcase_29 AC 70 ms
73,444 KB
testcase_30 AC 60 ms
69,844 KB
testcase_31 AC 62 ms
73,216 KB
testcase_32 AC 57 ms
67,240 KB
testcase_33 AC 59 ms
70,808 KB
testcase_34 AC 53 ms
66,604 KB
testcase_35 AC 62 ms
73,844 KB
testcase_36 AC 35 ms
52,192 KB
testcase_37 AC 34 ms
54,332 KB
testcase_38 AC 35 ms
53,072 KB
testcase_39 AC 34 ms
52,708 KB
testcase_40 AC 35 ms
54,100 KB
testcase_41 AC 34 ms
52,072 KB
testcase_42 AC 34 ms
53,360 KB
testcase_43 AC 37 ms
54,708 KB
testcase_44 AC 50 ms
66,112 KB
testcase_45 AC 36 ms
52,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


def is_valid(y,x,board):
    h = len(board)
    w = len(board[0])

    if not (0 <= y < h):
        return False
    
    if not (0 <= x < w):
        return False
    
    if board[y][x] == ".":
        return False
    
    return True

def check(board,dy,dx,black_count):
    h = len(board)
    w = len(board[0])
    used = set()
    for y in range(h):
        for x in range(w):
            if board[y][x] == ".":
                continue
            if (y,x) in used:
                continue

            if not is_valid(y+dy,x+dx,board):
                return False
            black_count -= 2
            used.add((y+dy,x+dx))
    
    if black_count > 0:
        return False
    return True



def main():
    h,w = map(int,input().split()) 
    board = []
    black_count = 0
    for _ in range(h):
        line:list = list(input())
        board.append(line)
        black_count += line.count("#")
    if black_count == 0:
        print("NO")
        return
    for dy in range(h):
        for dx in range(-w,w):
            if dy == 0 and dx == 0:
                continue
            if check(board,dy,dx,black_count):
                print("YES")
                return
    
    print("NO")
    return

main()
0