結果

問題 No.179 塗り分け
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-06-20 22:31:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 607 ms / 3,000 ms
コード長 797 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,480 KB
最終ジャッジ日時 2024-06-22 22:41:32
合計ジャッジ時間 10,035 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,224 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 42 ms
52,480 KB
testcase_04 AC 47 ms
58,368 KB
testcase_05 AC 154 ms
76,516 KB
testcase_06 AC 69 ms
66,560 KB
testcase_07 AC 43 ms
52,224 KB
testcase_08 AC 269 ms
76,800 KB
testcase_09 AC 257 ms
76,544 KB
testcase_10 AC 79 ms
71,552 KB
testcase_11 AC 77 ms
71,552 KB
testcase_12 AC 473 ms
76,572 KB
testcase_13 AC 56 ms
61,696 KB
testcase_14 AC 65 ms
68,736 KB
testcase_15 AC 41 ms
52,224 KB
testcase_16 AC 41 ms
51,968 KB
testcase_17 AC 41 ms
51,968 KB
testcase_18 AC 113 ms
76,416 KB
testcase_19 AC 114 ms
76,416 KB
testcase_20 AC 407 ms
76,828 KB
testcase_21 AC 335 ms
77,188 KB
testcase_22 AC 430 ms
76,984 KB
testcase_23 AC 84 ms
73,728 KB
testcase_24 AC 310 ms
76,800 KB
testcase_25 AC 83 ms
73,216 KB
testcase_26 AC 150 ms
76,800 KB
testcase_27 AC 441 ms
76,928 KB
testcase_28 AC 132 ms
76,408 KB
testcase_29 AC 560 ms
77,364 KB
testcase_30 AC 306 ms
77,072 KB
testcase_31 AC 607 ms
77,084 KB
testcase_32 AC 254 ms
76,984 KB
testcase_33 AC 566 ms
76,980 KB
testcase_34 AC 222 ms
77,188 KB
testcase_35 AC 603 ms
77,480 KB
testcase_36 AC 43 ms
52,352 KB
testcase_37 AC 42 ms
52,736 KB
testcase_38 AC 41 ms
52,224 KB
testcase_39 AC 48 ms
58,496 KB
testcase_40 AC 51 ms
60,160 KB
testcase_41 AC 42 ms
52,352 KB
testcase_42 AC 53 ms
60,928 KB
testcase_43 AC 115 ms
76,288 KB
testcase_44 AC 166 ms
76,420 KB
testcase_45 AC 95 ms
76,672 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+1):
    for j in range(-w, w+1):
        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 0 <= x+i < h and 0 <= 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