結果

問題 No.179 塗り分け
ユーザー brthyyjpbrthyyjp
提出日時 2021-06-29 02:39:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 853 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,072 KB
最終ジャッジ日時 2024-06-25 17:25:26
合計ジャッジ時間 5,511 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,608 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 89 ms
76,496 KB
testcase_06 AC 45 ms
59,392 KB
testcase_07 WA -
testcase_08 AC 175 ms
76,288 KB
testcase_09 AC 171 ms
76,032 KB
testcase_10 AC 51 ms
63,744 KB
testcase_11 AC 52 ms
63,488 KB
testcase_12 AC 151 ms
76,320 KB
testcase_13 AC 40 ms
53,248 KB
testcase_14 AC 47 ms
60,160 KB
testcase_15 AC 39 ms
52,224 KB
testcase_16 AC 38 ms
51,712 KB
testcase_17 AC 39 ms
52,224 KB
testcase_18 AC 81 ms
76,312 KB
testcase_19 AC 85 ms
76,300 KB
testcase_20 AC 148 ms
76,432 KB
testcase_21 AC 161 ms
76,416 KB
testcase_22 AC 177 ms
76,480 KB
testcase_23 AC 55 ms
64,640 KB
testcase_24 AC 172 ms
76,124 KB
testcase_25 AC 57 ms
65,664 KB
testcase_26 AC 90 ms
76,416 KB
testcase_27 AC 136 ms
76,092 KB
testcase_28 AC 84 ms
76,288 KB
testcase_29 AC 130 ms
76,572 KB
testcase_30 AC 103 ms
75,952 KB
testcase_31 AC 132 ms
76,144 KB
testcase_32 AC 99 ms
76,288 KB
testcase_33 AC 134 ms
76,288 KB
testcase_34 AC 119 ms
77,072 KB
testcase_35 AC 129 ms
76,132 KB
testcase_36 AC 40 ms
52,096 KB
testcase_37 AC 42 ms
52,352 KB
testcase_38 AC 41 ms
52,096 KB
testcase_39 AC 39 ms
51,968 KB
testcase_40 AC 40 ms
52,480 KB
testcase_41 AC 38 ms
52,224 KB
testcase_42 AC 39 ms
52,568 KB
testcase_43 AC 82 ms
75,904 KB
testcase_44 AC 86 ms
76,252 KB
testcase_45 AC 54 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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