結果

問題 No.179 塗り分け
ユーザー bug maker / ばぐめいかー@Python学習者bug maker / ばぐめいかー@Python学習者
提出日時 2023-07-08 00:15:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 534 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-21 20:38:59
合計ジャッジ時間 11,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 48 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 425 ms
10,624 KB
testcase_09 AC 403 ms
10,752 KB
testcase_10 AC 427 ms
10,624 KB
testcase_11 AC 370 ms
10,624 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 27 ms
10,752 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 26 ms
10,752 KB
testcase_18 AC 411 ms
10,624 KB
testcase_19 AC 381 ms
10,624 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 WA -
testcase_23 AC 427 ms
10,752 KB
testcase_24 WA -
testcase_25 AC 417 ms
10,624 KB
testcase_26 AC 406 ms
10,624 KB
testcase_27 WA -
testcase_28 AC 431 ms
10,624 KB
testcase_29 WA -
testcase_30 AC 429 ms
10,624 KB
testcase_31 WA -
testcase_32 AC 413 ms
10,752 KB
testcase_33 WA -
testcase_34 AC 410 ms
10,624 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 27 ms
10,752 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 27 ms
10,624 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())

D = [list(input()) for h in range(H)]

count = sum(D[h].count("#") for h in range(H))

if count == 0 or count % 2 == 1:
    print("NO")
    exit()

for h in range(H):
    for w in range(W):


        for i in range(H-h):
            for j in range(-w, W-w):
                if D[h][w] == "#" and D[h+i][w+j] == "#":
                    D[h][w], D[h+i][w+j] = ".", "."

count = sum(D[h].count("#") for h in range(H))

if count == 0:
    print("YES")
else:                    
    print("NO")          
0