結果

問題 No.179 塗り分け
ユーザー ntudantuda
提出日時 2023-12-31 17:56:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 821 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 79,960 KB
最終ジャッジ日時 2024-09-27 17:07:50
合計ジャッジ時間 10,037 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,744 KB
testcase_01 AC 44 ms
55,424 KB
testcase_02 AC 44 ms
54,216 KB
testcase_03 AC 43 ms
54,100 KB
testcase_04 AC 44 ms
54,520 KB
testcase_05 AC 133 ms
77,252 KB
testcase_06 AC 45 ms
54,920 KB
testcase_07 WA -
testcase_08 AC 362 ms
78,484 KB
testcase_09 WA -
testcase_10 AC 55 ms
63,252 KB
testcase_11 AC 55 ms
64,764 KB
testcase_12 AC 304 ms
77,976 KB
testcase_13 AC 53 ms
62,504 KB
testcase_14 AC 59 ms
69,012 KB
testcase_15 AC 49 ms
54,200 KB
testcase_16 AC 44 ms
53,796 KB
testcase_17 AC 44 ms
54,872 KB
testcase_18 AC 71 ms
74,448 KB
testcase_19 AC 69 ms
74,092 KB
testcase_20 AC 344 ms
77,996 KB
testcase_21 AC 376 ms
78,500 KB
testcase_22 AC 412 ms
78,496 KB
testcase_23 AC 54 ms
63,020 KB
testcase_24 AC 391 ms
78,400 KB
testcase_25 AC 65 ms
68,628 KB
testcase_26 WA -
testcase_27 AC 413 ms
79,220 KB
testcase_28 WA -
testcase_29 AC 388 ms
78,332 KB
testcase_30 WA -
testcase_31 AC 350 ms
78,080 KB
testcase_32 AC 150 ms
76,804 KB
testcase_33 AC 368 ms
78,716 KB
testcase_34 WA -
testcase_35 AC 362 ms
78,320 KB
testcase_36 AC 45 ms
53,800 KB
testcase_37 AC 45 ms
54,980 KB
testcase_38 AC 44 ms
54,788 KB
testcase_39 AC 45 ms
54,924 KB
testcase_40 AC 52 ms
61,556 KB
testcase_41 AC 45 ms
54,756 KB
testcase_42 AC 49 ms
55,188 KB
testcase_43 AC 83 ms
76,592 KB
testcase_44 AC 120 ms
76,680 KB
testcase_45 AC 62 ms
66,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy

H, W = map(int, input().split())
S = [list(input()) for _ in range(H)]
for i in range(H):
    for j in range(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 i + h < H and 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