結果

問題 No.179 塗り分け
ユーザー gorugo30gorugo30
提出日時 2021-03-16 23:15:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 437 ms / 3,000 ms
コード長 973 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-11-08 19:08:25
合計ジャッジ時間 10,104 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 42 ms
52,352 KB
testcase_04 AC 48 ms
58,624 KB
testcase_05 AC 129 ms
76,524 KB
testcase_06 AC 98 ms
76,416 KB
testcase_07 AC 42 ms
52,224 KB
testcase_08 AC 432 ms
76,672 KB
testcase_09 AC 426 ms
76,800 KB
testcase_10 AC 198 ms
76,272 KB
testcase_11 AC 185 ms
76,664 KB
testcase_12 AC 291 ms
76,932 KB
testcase_13 AC 52 ms
60,160 KB
testcase_14 AC 58 ms
62,976 KB
testcase_15 AC 42 ms
51,840 KB
testcase_16 AC 42 ms
51,968 KB
testcase_17 AC 42 ms
51,968 KB
testcase_18 AC 218 ms
76,688 KB
testcase_19 AC 208 ms
76,548 KB
testcase_20 AC 314 ms
76,672 KB
testcase_21 AC 404 ms
76,800 KB
testcase_22 AC 437 ms
76,928 KB
testcase_23 AC 226 ms
76,800 KB
testcase_24 AC 424 ms
77,056 KB
testcase_25 AC 250 ms
76,416 KB
testcase_26 AC 242 ms
76,416 KB
testcase_27 AC 382 ms
76,672 KB
testcase_28 AC 239 ms
76,544 KB
testcase_29 AC 382 ms
76,672 KB
testcase_30 AC 303 ms
76,928 KB
testcase_31 AC 404 ms
76,928 KB
testcase_32 AC 284 ms
76,800 KB
testcase_33 AC 378 ms
76,672 KB
testcase_34 AC 280 ms
76,704 KB
testcase_35 AC 377 ms
76,800 KB
testcase_36 AC 42 ms
52,352 KB
testcase_37 AC 43 ms
52,352 KB
testcase_38 AC 42 ms
52,224 KB
testcase_39 AC 43 ms
51,968 KB
testcase_40 AC 43 ms
52,224 KB
testcase_41 AC 42 ms
52,096 KB
testcase_42 AC 42 ms
52,352 KB
testcase_43 AC 102 ms
76,160 KB
testcase_44 AC 139 ms
76,672 KB
testcase_45 AC 74 ms
69,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
grid = [input() for i in range(H)]

cnt = sum([grid[i].count("#") for i in range(H)])
if cnt < 2:
    print("NO")
    exit()
for tatehoukounoshift in range(-(H - 1), H):
    for yokohoukounoshift in range(-(W - 1), W):
        if tatehoukounoshift == yokohoukounoshift == 0:
            continue
        can = True
        used = [[False] * W for i in range(H)]
        for i in range(H):
            for j in range(W):
                if used[i][j] or grid[i][j] == ".":
                    continue
                if not (0 <= i + tatehoukounoshift < H and 0 <= j + yokohoukounoshift < W):
                    can = False
                    break
                if grid[i + tatehoukounoshift][j + yokohoukounoshift] == ".":
                    can = False
                used[i][j] = True
                used[i + tatehoukounoshift][j + yokohoukounoshift] = True
        if can:
            print("YES")
            exit()
print("NO")
0