結果

問題 No.179 塗り分け
ユーザー NoneNone
提出日時 2021-05-01 09:32:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 3,000 ms
コード長 1,239 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-07-19 15:50:01
合計ジャッジ時間 4,979 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 46 ms
51,968 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 79 ms
75,520 KB
testcase_06 AC 49 ms
59,648 KB
testcase_07 AC 43 ms
58,368 KB
testcase_08 AC 136 ms
77,440 KB
testcase_09 AC 134 ms
77,440 KB
testcase_10 AC 56 ms
61,952 KB
testcase_11 AC 56 ms
61,312 KB
testcase_12 AC 123 ms
76,544 KB
testcase_13 AC 48 ms
58,624 KB
testcase_14 AC 46 ms
59,520 KB
testcase_15 AC 39 ms
51,840 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 38 ms
52,096 KB
testcase_18 AC 108 ms
76,544 KB
testcase_19 AC 67 ms
69,888 KB
testcase_20 AC 122 ms
77,184 KB
testcase_21 AC 140 ms
77,568 KB
testcase_22 AC 172 ms
77,440 KB
testcase_23 AC 54 ms
62,080 KB
testcase_24 AC 162 ms
76,800 KB
testcase_25 AC 58 ms
64,768 KB
testcase_26 AC 107 ms
77,056 KB
testcase_27 AC 119 ms
77,056 KB
testcase_28 AC 109 ms
76,672 KB
testcase_29 AC 117 ms
77,312 KB
testcase_30 AC 120 ms
77,056 KB
testcase_31 AC 118 ms
77,184 KB
testcase_32 AC 117 ms
76,544 KB
testcase_33 AC 127 ms
77,184 KB
testcase_34 AC 119 ms
77,312 KB
testcase_35 AC 125 ms
77,440 KB
testcase_36 AC 38 ms
52,480 KB
testcase_37 AC 39 ms
52,352 KB
testcase_38 AC 37 ms
52,224 KB
testcase_39 AC 40 ms
51,840 KB
testcase_40 AC 41 ms
51,968 KB
testcase_41 AC 42 ms
51,968 KB
testcase_42 AC 37 ms
52,480 KB
testcase_43 AC 65 ms
71,552 KB
testcase_44 AC 78 ms
76,032 KB
testcase_45 AC 51 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(grid):
    for h0 in range(H):
        for w0 in range(W):
            if (h0,w0)==(0,0):
                continue
            flg=0
            used=[[0]*W for _ in range(H)]
            for h in range(H):
                for w in range(W):
                    if grid[h][w]==".":
                        continue
                    if grid[h][w]=="#":
                        if used[h][w]==1:
                            continue
                        if not (h+h0<0 or w+w0<0 or h+h0>=H or w+w0>=W or grid[h+h0][w+w0]=="."):
                            used[h+h0][w+w0]=1
                            continue
                    flg=1
                    break
                if flg==1:
                    break
            if flg==0:
                return True
    return False


H,W=map(int,input().split())
grid=[[0]*W for _ in range(H)]
cnt=0
for h in range(H):
    for w,s in enumerate(input().rstrip()):
        grid[h][w]=s
        if s=="#":
            cnt+=1

if cnt==0:
    print("NO")
    exit()

res=0

res|=solve(grid)

for h in range(H):
    grid[h].reverse()

res|=solve(grid)

grid.reverse()

res|=solve(grid)

for h in range(H):
    grid[h].reverse()


res|=solve(grid)

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