結果

問題 No.179 塗り分け
ユーザー brthyyjpbrthyyjp
提出日時 2021-06-29 02:43:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 3,000 ms
コード長 949 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 77,368 KB
最終ジャッジ日時 2024-06-25 17:25:32
合計ジャッジ時間 5,146 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 39 ms
52,068 KB
testcase_03 AC 40 ms
51,712 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 89 ms
75,904 KB
testcase_06 AC 45 ms
59,008 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 174 ms
76,160 KB
testcase_09 AC 173 ms
76,032 KB
testcase_10 AC 53 ms
63,104 KB
testcase_11 AC 55 ms
63,104 KB
testcase_12 AC 147 ms
76,444 KB
testcase_13 AC 40 ms
52,736 KB
testcase_14 AC 47 ms
60,288 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 38 ms
52,096 KB
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 84 ms
76,416 KB
testcase_19 AC 84 ms
76,288 KB
testcase_20 AC 151 ms
76,396 KB
testcase_21 AC 159 ms
76,416 KB
testcase_22 AC 175 ms
76,416 KB
testcase_23 AC 53 ms
64,384 KB
testcase_24 AC 169 ms
76,160 KB
testcase_25 AC 57 ms
65,536 KB
testcase_26 AC 90 ms
76,556 KB
testcase_27 AC 135 ms
76,204 KB
testcase_28 AC 83 ms
76,308 KB
testcase_29 AC 131 ms
76,288 KB
testcase_30 AC 104 ms
76,288 KB
testcase_31 AC 132 ms
76,288 KB
testcase_32 AC 99 ms
76,800 KB
testcase_33 AC 135 ms
76,160 KB
testcase_34 AC 121 ms
77,368 KB
testcase_35 AC 129 ms
76,288 KB
testcase_36 AC 38 ms
52,224 KB
testcase_37 AC 39 ms
52,452 KB
testcase_38 AC 39 ms
52,224 KB
testcase_39 AC 39 ms
52,224 KB
testcase_40 AC 39 ms
52,480 KB
testcase_41 AC 39 ms
52,224 KB
testcase_42 AC 38 ms
52,224 KB
testcase_43 AC 81 ms
75,904 KB
testcase_44 AC 86 ms
76,160 KB
testcase_45 AC 52 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
S = [input() for i in range(h)]

cnt = 0
for i in range(h):
    cnt += S[i].count('#')

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

for di in range(h):
    for dj in range(-(w-1), w):
        if di == 0 and dj == 0:
            continue
        C = [[-1]*w for i in range(h)]
        flag = True
        for i in range(h):
            for j in range(w):
                if S[i][j] == '#' and C[i][j] == -1:
                    C[i][j] = 0
                    ni, nj = i+di, j+dj
                    if 0 <= ni < h and 0 <= nj < w:
                        if S[ni][nj] == '#' and C[ni][nj] == -1:
                            C[ni][nj] = 1
                        else:
                            flag = False
                            break
                    else:
                        flag = False
                        break
        if flag:
            print('YES')
            exit()
else:
    print('NO')
0