結果

問題 No.179 塗り分け
ユーザー flippergoflippergo
提出日時 2024-12-08 08:30:16
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 596 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-12-08 08:30:24
合計ジャッジ時間 7,286 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
53,504 KB
testcase_01 AC 49 ms
53,504 KB
testcase_02 AC 52 ms
53,120 KB
testcase_03 AC 52 ms
53,376 KB
testcase_04 AC 50 ms
53,376 KB
testcase_05 AC 112 ms
76,544 KB
testcase_06 AC 57 ms
60,800 KB
testcase_07 RE -
testcase_08 AC 61 ms
61,952 KB
testcase_09 AC 61 ms
62,080 KB
testcase_10 AC 79 ms
64,384 KB
testcase_11 AC 66 ms
64,256 KB
testcase_12 AC 344 ms
78,208 KB
testcase_13 AC 49 ms
53,504 KB
testcase_14 AC 51 ms
54,528 KB
testcase_15 AC 47 ms
53,376 KB
testcase_16 AC 49 ms
52,992 KB
testcase_17 RE -
testcase_18 AC 80 ms
71,040 KB
testcase_19 AC 78 ms
70,656 KB
testcase_20 AC 236 ms
77,440 KB
testcase_21 AC 113 ms
76,672 KB
testcase_22 AC 115 ms
76,672 KB
testcase_23 AC 74 ms
63,616 KB
testcase_24 AC 104 ms
76,544 KB
testcase_25 AC 71 ms
65,664 KB
testcase_26 AC 76 ms
69,376 KB
testcase_27 AC 172 ms
76,928 KB
testcase_28 AC 79 ms
70,272 KB
testcase_29 AC 224 ms
78,208 KB
testcase_30 AC 155 ms
77,440 KB
testcase_31 AC 261 ms
78,080 KB
testcase_32 AC 128 ms
76,672 KB
testcase_33 AC 249 ms
77,952 KB
testcase_34 AC 116 ms
76,672 KB
testcase_35 AC 291 ms
77,824 KB
testcase_36 AC 49 ms
53,632 KB
testcase_37 AC 49 ms
53,376 KB
testcase_38 AC 49 ms
53,248 KB
testcase_39 AC 50 ms
53,248 KB
testcase_40 AC 50 ms
53,504 KB
testcase_41 AC 49 ms
53,504 KB
testcase_42 AC 50 ms
53,888 KB
testcase_43 AC 89 ms
75,904 KB
testcase_44 AC 110 ms
76,544 KB
testcase_45 AC 66 ms
64,512 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))
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