結果

問題 No.179 塗り分け
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-06-20 22:28:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 779 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 77,228 KB
最終ジャッジ日時 2024-06-22 22:41:06
合計ジャッジ時間 6,791 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,608 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 96 ms
76,416 KB
testcase_06 AC 35 ms
52,096 KB
testcase_07 AC 35 ms
52,608 KB
testcase_08 AC 139 ms
76,492 KB
testcase_09 WA -
testcase_10 AC 42 ms
60,288 KB
testcase_11 AC 42 ms
60,416 KB
testcase_12 AC 232 ms
76,880 KB
testcase_13 AC 41 ms
59,520 KB
testcase_14 AC 43 ms
62,976 KB
testcase_15 AC 34 ms
52,096 KB
testcase_16 AC 35 ms
52,096 KB
testcase_17 AC 34 ms
52,352 KB
testcase_18 AC 67 ms
74,648 KB
testcase_19 AC 72 ms
76,416 KB
testcase_20 AC 197 ms
76,928 KB
testcase_21 AC 170 ms
76,548 KB
testcase_22 AC 223 ms
76,856 KB
testcase_23 AC 42 ms
60,416 KB
testcase_24 AC 166 ms
77,040 KB
testcase_25 AC 52 ms
66,432 KB
testcase_26 WA -
testcase_27 AC 232 ms
76,544 KB
testcase_28 WA -
testcase_29 AC 279 ms
76,712 KB
testcase_30 WA -
testcase_31 AC 305 ms
76,568 KB
testcase_32 AC 143 ms
76,748 KB
testcase_33 AC 282 ms
77,136 KB
testcase_34 WA -
testcase_35 AC 316 ms
76,568 KB
testcase_36 AC 37 ms
52,480 KB
testcase_37 AC 33 ms
52,096 KB
testcase_38 AC 36 ms
52,224 KB
testcase_39 AC 35 ms
52,736 KB
testcase_40 AC 33 ms
52,608 KB
testcase_41 AC 32 ms
52,224 KB
testcase_42 AC 35 ms
52,352 KB
testcase_43 AC 71 ms
76,416 KB
testcase_44 AC 98 ms
76,520 KB
testcase_45 AC 56 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
s = [list(input()) for i in range(h)]
c = 0
for x in s: c += x.count("#")
if c == 0:
    print("NO")
    exit()

for i in range(h):
    for j in range(w):
        use = [[0 for _ in range(w)] for __ in range(h)]
        if i == j == 0: continue
        flg = True
        for x in range(h):
             for y in range(w):
                 if s[x][y] == "#" and use[x][y] == 0:
                    if x+i < h and y+j < w and s[x+i][y+j] == "#" and use[x+i][y+j] == 0:
                        use[x][y] = 1
                        use[x+i][y+j] = 1
                    else:
                        flg = False
        cc = 0
        for x in use: cc += x.count(1)
        if flg and c == cc:
            print("YES")
            exit()
print("NO")
0