結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 92 ms
76,416 KB
testcase_06 AC 42 ms
52,480 KB
testcase_07 WA -
testcase_08 AC 131 ms
76,032 KB
testcase_09 WA -
testcase_10 AC 50 ms
59,008 KB
testcase_11 AC 50 ms
59,648 KB
testcase_12 AC 143 ms
76,160 KB
testcase_13 AC 43 ms
52,096 KB
testcase_14 AC 50 ms
59,776 KB
testcase_15 AC 41 ms
52,096 KB
testcase_16 AC 42 ms
51,584 KB
testcase_17 AC 41 ms
51,584 KB
testcase_18 AC 72 ms
68,352 KB
testcase_19 AC 71 ms
68,352 KB
testcase_20 AC 124 ms
75,904 KB
testcase_21 AC 133 ms
76,032 KB
testcase_22 AC 173 ms
75,776 KB
testcase_23 AC 49 ms
58,880 KB
testcase_24 AC 129 ms
76,288 KB
testcase_25 AC 56 ms
61,824 KB
testcase_26 WA -
testcase_27 AC 117 ms
75,904 KB
testcase_28 WA -
testcase_29 AC 115 ms
76,032 KB
testcase_30 WA -
testcase_31 AC 126 ms
76,304 KB
testcase_32 AC 101 ms
75,904 KB
testcase_33 AC 121 ms
76,032 KB
testcase_34 WA -
testcase_35 AC 122 ms
76,160 KB
testcase_36 AC 41 ms
52,096 KB
testcase_37 AC 43 ms
51,840 KB
testcase_38 AC 42 ms
51,840 KB
testcase_39 AC 41 ms
51,840 KB
testcase_40 AC 42 ms
52,224 KB
testcase_41 AC 42 ms
51,968 KB
testcase_42 AC 41 ms
51,968 KB
testcase_43 AC 73 ms
68,480 KB
testcase_44 AC 98 ms
75,904 KB
testcase_45 AC 52 ms
61,056 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):
        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