結果

問題 No.179 塗り分け
ユーザー mkawa2mkawa2
提出日時 2019-10-26 22:26:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,612 ms / 3,000 ms
コード長 834 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 88,320 KB
最終ジャッジ日時 2024-07-23 15:03:47
合計ジャッジ時間 22,090 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,928 KB
testcase_01 AC 43 ms
54,844 KB
testcase_02 AC 43 ms
53,936 KB
testcase_03 AC 41 ms
55,724 KB
testcase_04 AC 47 ms
61,936 KB
testcase_05 AC 235 ms
78,188 KB
testcase_06 AC 58 ms
68,644 KB
testcase_07 AC 1,007 ms
82,976 KB
testcase_08 AC 979 ms
82,192 KB
testcase_09 AC 954 ms
82,704 KB
testcase_10 AC 83 ms
76,180 KB
testcase_11 AC 81 ms
76,160 KB
testcase_12 AC 1,547 ms
88,320 KB
testcase_13 AC 59 ms
67,232 KB
testcase_14 AC 56 ms
68,188 KB
testcase_15 AC 42 ms
53,964 KB
testcase_16 AC 42 ms
54,404 KB
testcase_17 AC 41 ms
54,260 KB
testcase_18 AC 112 ms
76,512 KB
testcase_19 AC 127 ms
77,376 KB
testcase_20 AC 1,325 ms
85,844 KB
testcase_21 AC 1,105 ms
84,724 KB
testcase_22 AC 1,069 ms
83,904 KB
testcase_23 AC 77 ms
76,164 KB
testcase_24 AC 1,072 ms
83,740 KB
testcase_25 AC 77 ms
76,460 KB
testcase_26 AC 246 ms
77,636 KB
testcase_27 AC 1,298 ms
85,360 KB
testcase_28 AC 145 ms
77,064 KB
testcase_29 AC 1,427 ms
86,280 KB
testcase_30 AC 678 ms
81,064 KB
testcase_31 AC 1,518 ms
87,452 KB
testcase_32 AC 463 ms
78,544 KB
testcase_33 AC 1,497 ms
86,512 KB
testcase_34 AC 383 ms
79,236 KB
testcase_35 AC 1,612 ms
87,456 KB
testcase_36 AC 42 ms
53,912 KB
testcase_37 AC 43 ms
55,624 KB
testcase_38 AC 42 ms
55,424 KB
testcase_39 AC 42 ms
54,684 KB
testcase_40 AC 49 ms
62,272 KB
testcase_41 AC 42 ms
55,464 KB
testcase_42 AC 49 ms
62,376 KB
testcase_43 AC 95 ms
76,828 KB
testcase_44 AC 251 ms
77,560 KB
testcase_45 AC 72 ms
76,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from copy import deepcopy

sys.setrecursionlimit(10 ** 6)

def main():
    h, w = map(int, input().split())
    t0 = [[-1 if c == "#" else 0 for c in input()] for _ in range(h)]
    for di in range(h):
        for dj in range(-w + 1, w):
            flag = True
            t = deepcopy(t0)
            br = False
            for i in range(h):
                for j in range(w):
                    if t[i][j] != -1: continue
                    t[i][j] = 1
                    if i + di >= h or j + dj >= w or j + dj < 0 or t[i + di][j + dj] != -1:
                        br = True
                        break
                    flag = False
                    t[i + di][j + dj] = 2
                if br: break
            if br or flag: continue
            print("YES")
            exit()
    print("NO")

main()
0