結果

問題 No.179 塗り分け
ユーザー roiti46roiti46
提出日時 2015-04-06 01:09:06
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 321 ms / 3,000 ms
コード長 848 bytes
コンパイル時間 1,695 ms
コンパイル使用メモリ 76,700 KB
実行使用メモリ 79,608 KB
最終ジャッジ日時 2024-07-23 14:27:04
合計ジャッジ時間 8,868 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
75,448 KB
testcase_01 AC 73 ms
75,540 KB
testcase_02 AC 74 ms
75,176 KB
testcase_03 AC 72 ms
75,380 KB
testcase_04 AC 81 ms
76,824 KB
testcase_05 AC 74 ms
75,504 KB
testcase_06 AC 82 ms
77,884 KB
testcase_07 AC 76 ms
76,320 KB
testcase_08 AC 217 ms
78,776 KB
testcase_09 AC 211 ms
78,764 KB
testcase_10 AC 87 ms
78,396 KB
testcase_11 AC 87 ms
78,252 KB
testcase_12 AC 211 ms
78,752 KB
testcase_13 AC 78 ms
76,596 KB
testcase_14 AC 79 ms
77,608 KB
testcase_15 AC 71 ms
75,668 KB
testcase_16 AC 72 ms
75,832 KB
testcase_17 AC 72 ms
75,780 KB
testcase_18 AC 99 ms
78,228 KB
testcase_19 AC 97 ms
78,220 KB
testcase_20 AC 74 ms
76,316 KB
testcase_21 AC 74 ms
76,048 KB
testcase_22 AC 321 ms
79,376 KB
testcase_23 AC 92 ms
78,216 KB
testcase_24 AC 244 ms
79,608 KB
testcase_25 AC 97 ms
78,140 KB
testcase_26 AC 126 ms
78,360 KB
testcase_27 AC 267 ms
78,492 KB
testcase_28 AC 113 ms
78,228 KB
testcase_29 AC 301 ms
78,332 KB
testcase_30 AC 187 ms
78,236 KB
testcase_31 AC 311 ms
78,764 KB
testcase_32 AC 155 ms
78,396 KB
testcase_33 AC 288 ms
78,632 KB
testcase_34 AC 149 ms
78,112 KB
testcase_35 AC 286 ms
78,736 KB
testcase_36 AC 75 ms
75,564 KB
testcase_37 AC 76 ms
75,568 KB
testcase_38 AC 75 ms
75,404 KB
testcase_39 AC 73 ms
75,804 KB
testcase_40 AC 79 ms
77,216 KB
testcase_41 AC 75 ms
75,436 KB
testcase_42 AC 78 ms
76,864 KB
testcase_43 AC 93 ms
77,976 KB
testcase_44 AC 115 ms
78,108 KB
testcase_45 AC 88 ms
78,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, raw_input().split())
S = [list(raw_input()) for i in xrange(H)]

black = 0
for y in xrange(H):
    for x in xrange(W):
        if S[y][x] == "#": black += 1
if black == 0 or black % 2 == 1:
    print "NO"
    exit()
    
for dy in xrange(H):
    for dx in xrange(-W, W):
        if abs(dx) + dy == 0: continue

        flag = True
        used = [[S[y][x] == "." for x in xrange(W)] for y in xrange(H)] 

        for y in xrange(H-dy):
            for x in xrange(W):
                if used[y][x]: continue
                if not (0 <= x+dx < W) or used[y+dy][x+dx]:
                    flag = False
                    break
                used[y][x] = used[y+dy][x+dx] = True
            if not flag: break
        else:
            if sum(map(sum, used)) != H*W: continue
            print "YES"
            exit()

print "NO"
0