結果

問題 No.179 塗り分け
ユーザー toyuzukotoyuzuko
提出日時 2020-02-04 23:13:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 995 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-21 07:49:41
合計ジャッジ時間 13,417 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 34 ms
10,880 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 84 ms
10,880 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 WA -
testcase_08 AC 411 ms
10,880 KB
testcase_09 AC 401 ms
10,880 KB
testcase_10 AC 35 ms
10,752 KB
testcase_11 AC 35 ms
10,880 KB
testcase_12 AC 528 ms
10,880 KB
testcase_13 AC 31 ms
10,880 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 30 ms
10,880 KB
testcase_16 AC 30 ms
10,880 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 245 ms
10,880 KB
testcase_19 AC 42 ms
10,752 KB
testcase_20 AC 412 ms
10,880 KB
testcase_21 AC 1,006 ms
10,880 KB
testcase_22 AC 2,423 ms
10,752 KB
testcase_23 AC 34 ms
10,880 KB
testcase_24 AC 2,405 ms
11,008 KB
testcase_25 AC 52 ms
10,752 KB
testcase_26 AC 248 ms
10,880 KB
testcase_27 AC 381 ms
10,880 KB
testcase_28 AC 227 ms
10,880 KB
testcase_29 AC 377 ms
10,752 KB
testcase_30 AC 286 ms
10,880 KB
testcase_31 AC 381 ms
10,880 KB
testcase_32 AC 273 ms
10,880 KB
testcase_33 AC 387 ms
10,880 KB
testcase_34 AC 235 ms
10,880 KB
testcase_35 AC 372 ms
10,880 KB
testcase_36 AC 31 ms
10,880 KB
testcase_37 AC 31 ms
10,880 KB
testcase_38 AC 31 ms
10,880 KB
testcase_39 AC 31 ms
10,880 KB
testcase_40 AC 33 ms
10,752 KB
testcase_41 AC 32 ms
10,880 KB
testcase_42 AC 31 ms
10,752 KB
testcase_43 AC 41 ms
10,880 KB
testcase_44 AC 75 ms
10,880 KB
testcase_45 AC 33 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
S = [input() for _ in range(H)]
flag = False


for dz in range(1,H*W):
    dx,dy = divmod(dz,W)
    checked = [[0 for j in range(W)] for i in range(H)]
    for sz in range(H*W):
        sx,sy = divmod(sz,W)
        if S[sx][sy] == '#' and not checked[sx][sy]:
            nx,ny = sx+dx,sy+dy
            if 0<=nx<H and 0<=ny<W and S[nx][ny] == '#':
                checked[nx][ny] = 1
            else:
                break
    else:
        flag = True
        break

for dz in range(1,H*W):
    dx,dy = divmod(dz,W)
    dx = -dx
    checked = [[0 for j in range(W)] for i in range(H)]
    for sz in range(H*W):
        sx,sy = divmod(sz,W)
        sx = H-1-sx
        if S[sx][sy] == '#' and not checked[sx][sy]:
            nx,ny = sx+dx,sy+dy
            if 0<=nx<H and 0<=ny<W and S[nx][ny] == '#':
                checked[nx][ny] = 1
            else:
                break
    else:
        flag = True
        break
        
print('YES' if flag else 'NO')
0