結果

問題 No.179 塗り分け
ユーザー ntudantuda
提出日時 2023-12-31 18:49:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,098 ms / 3,000 ms
コード長 927 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 84,284 KB
最終ジャッジ日時 2024-09-27 17:10:23
合計ジャッジ時間 21,720 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,440 KB
testcase_01 AC 42 ms
56,220 KB
testcase_02 AC 53 ms
64,424 KB
testcase_03 AC 42 ms
54,852 KB
testcase_04 AC 50 ms
63,656 KB
testcase_05 AC 200 ms
77,532 KB
testcase_06 AC 95 ms
76,940 KB
testcase_07 AC 40 ms
54,900 KB
testcase_08 AC 995 ms
81,840 KB
testcase_09 AC 1,086 ms
81,696 KB
testcase_10 AC 502 ms
79,564 KB
testcase_11 AC 416 ms
78,980 KB
testcase_12 AC 825 ms
80,896 KB
testcase_13 AC 55 ms
67,936 KB
testcase_14 AC 59 ms
73,072 KB
testcase_15 AC 42 ms
54,056 KB
testcase_16 AC 40 ms
53,920 KB
testcase_17 AC 40 ms
53,828 KB
testcase_18 AC 544 ms
79,316 KB
testcase_19 AC 545 ms
81,716 KB
testcase_20 AC 913 ms
82,896 KB
testcase_21 AC 1,038 ms
83,192 KB
testcase_22 AC 1,097 ms
82,860 KB
testcase_23 AC 557 ms
79,264 KB
testcase_24 AC 1,098 ms
81,856 KB
testcase_25 AC 569 ms
79,292 KB
testcase_26 AC 608 ms
80,168 KB
testcase_27 AC 986 ms
81,804 KB
testcase_28 AC 562 ms
79,532 KB
testcase_29 AC 1,024 ms
84,284 KB
testcase_30 AC 786 ms
81,300 KB
testcase_31 AC 997 ms
82,232 KB
testcase_32 AC 678 ms
80,472 KB
testcase_33 AC 1,019 ms
82,584 KB
testcase_34 AC 605 ms
80,704 KB
testcase_35 AC 1,025 ms
83,032 KB
testcase_36 AC 40 ms
54,400 KB
testcase_37 AC 41 ms
55,180 KB
testcase_38 AC 39 ms
55,812 KB
testcase_39 AC 39 ms
54,672 KB
testcase_40 AC 44 ms
62,020 KB
testcase_41 AC 40 ms
54,688 KB
testcase_42 AC 46 ms
61,776 KB
testcase_43 AC 94 ms
76,944 KB
testcase_44 AC 200 ms
77,628 KB
testcase_45 AC 89 ms
77,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy

H, W = map(int, input().split())
S = [list(input()) for _ in range(H)]

tmp = 0
for s in S:
    tmp += s.count("#")
if tmp == 0:
    print("NO")
    exit()

for i in range(-H+1,H):
    for j in range(-W+1,W):
        if i == 0 and j == 0:
            continue
        T = deepcopy(S)
        f = True
        for h in range(H):
            for w in range(W):
                if T[h][w] == "#":
                    T[h][w] == "."
                    if 0 <= i + h < H and 0 <= j + w < W:
                        if T[i + h][j + w] == "#":
                            T[i + h][j + w] = "."
                        else:
                            f = False
                    else:
                        f = False
                if f == False:
                    break
            if f == False:
                break
        if f == True:
            print("YES")
            exit()
print("NO")
0