結果

問題 No.179 塗り分け
ユーザー flippergoflippergo
提出日時 2024-12-08 08:33:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 292 ms / 3,000 ms
コード長 696 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,336 KB
最終ジャッジ日時 2024-12-08 08:33:09
合計ジャッジ時間 5,806 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,376 KB
testcase_01 AC 45 ms
53,632 KB
testcase_02 AC 46 ms
53,504 KB
testcase_03 AC 43 ms
53,376 KB
testcase_04 AC 42 ms
53,632 KB
testcase_05 AC 115 ms
76,672 KB
testcase_06 AC 47 ms
60,928 KB
testcase_07 AC 45 ms
59,136 KB
testcase_08 AC 50 ms
62,592 KB
testcase_09 AC 50 ms
62,464 KB
testcase_10 AC 56 ms
64,512 KB
testcase_11 AC 69 ms
64,640 KB
testcase_12 AC 292 ms
78,336 KB
testcase_13 AC 40 ms
53,888 KB
testcase_14 AC 42 ms
55,168 KB
testcase_15 AC 41 ms
53,248 KB
testcase_16 AC 40 ms
53,376 KB
testcase_17 AC 41 ms
53,632 KB
testcase_18 AC 63 ms
70,912 KB
testcase_19 AC 63 ms
70,656 KB
testcase_20 AC 207 ms
77,952 KB
testcase_21 AC 91 ms
76,672 KB
testcase_22 AC 119 ms
76,896 KB
testcase_23 AC 51 ms
63,488 KB
testcase_24 AC 84 ms
76,800 KB
testcase_25 AC 55 ms
65,664 KB
testcase_26 AC 61 ms
69,632 KB
testcase_27 AC 149 ms
77,076 KB
testcase_28 AC 62 ms
70,528 KB
testcase_29 AC 199 ms
77,952 KB
testcase_30 AC 130 ms
77,596 KB
testcase_31 AC 222 ms
77,824 KB
testcase_32 AC 127 ms
76,800 KB
testcase_33 AC 221 ms
77,952 KB
testcase_34 AC 95 ms
77,056 KB
testcase_35 AC 252 ms
77,952 KB
testcase_36 AC 41 ms
53,504 KB
testcase_37 AC 39 ms
53,760 KB
testcase_38 AC 40 ms
53,760 KB
testcase_39 AC 39 ms
53,760 KB
testcase_40 AC 42 ms
53,632 KB
testcase_41 AC 41 ms
53,888 KB
testcase_42 AC 41 ms
54,016 KB
testcase_43 AC 70 ms
76,232 KB
testcase_44 AC 96 ms
76,544 KB
testcase_45 AC 54 ms
65,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy
H,W = map(int,input().split())
S = [list(input()) for _ in range(H)]
A = []
for i in range(H):
    for j in range(W):
        if S[i][j]=="#":
            A.append((i,j))
if len(A)==0:
    flag = "NO"
else:
    si,sj = A[0]
    for k in range(len(A)):
        flag = "YES"
        T = copy.deepcopy(S)
        y,x = A[k]
        di,dj = y-si,x-sj
        for m in range(len(A)):
            i,j = A[m]
            if T[i][j]=="#":
                T[i][j] = 0
                if 0<=i+di<H and 0<=j+dj<W and T[i+di][j+dj]=="#":
                    T[i+di][j+dj] = 1
                else:
                    flag = "NO"
                    break
        if flag=="YES":break
print(flag)
0