結果

問題 No.179 塗り分け
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-06-20 22:22:46
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 76,916 KB
最終ジャッジ日時 2024-06-22 22:40:58
合計ジャッジ時間 6,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,816 KB
testcase_01 AC 38 ms
53,824 KB
testcase_02 AC 36 ms
53,008 KB
testcase_03 AC 36 ms
53,232 KB
testcase_04 AC 37 ms
52,392 KB
testcase_05 AC 95 ms
76,416 KB
testcase_06 AC 39 ms
52,608 KB
testcase_07 WA -
testcase_08 AC 133 ms
76,672 KB
testcase_09 WA -
testcase_10 AC 47 ms
60,032 KB
testcase_11 AC 44 ms
60,160 KB
testcase_12 AC 256 ms
76,368 KB
testcase_13 AC 45 ms
59,520 KB
testcase_14 AC 46 ms
62,336 KB
testcase_15 AC 36 ms
51,968 KB
testcase_16 AC 37 ms
51,840 KB
testcase_17 AC 36 ms
51,712 KB
testcase_18 AC 64 ms
71,168 KB
testcase_19 AC 64 ms
71,424 KB
testcase_20 AC 199 ms
76,548 KB
testcase_21 AC 177 ms
76,416 KB
testcase_22 AC 217 ms
76,504 KB
testcase_23 AC 43 ms
59,520 KB
testcase_24 AC 172 ms
76,664 KB
testcase_25 AC 53 ms
66,568 KB
testcase_26 WA -
testcase_27 AC 225 ms
76,544 KB
testcase_28 WA -
testcase_29 AC 288 ms
76,664 KB
testcase_30 WA -
testcase_31 AC 314 ms
76,544 KB
testcase_32 AC 138 ms
76,252 KB
testcase_33 AC 278 ms
76,296 KB
testcase_34 WA -
testcase_35 AC 309 ms
76,916 KB
testcase_36 AC 39 ms
52,480 KB
testcase_37 AC 37 ms
52,096 KB
testcase_38 AC 37 ms
52,480 KB
testcase_39 AC 37 ms
52,224 KB
testcase_40 AC 38 ms
52,608 KB
testcase_41 AC 38 ms
52,096 KB
testcase_42 AC 37 ms
52,096 KB
testcase_43 AC 75 ms
76,416 KB
testcase_44 AC 104 ms
76,160 KB
testcase_45 AC 59 ms
67,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
s = [list(input()) for i in range(h)]

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
        if flg:
            print("YES")
            exit()
print("NO")
0