結果

問題 No.179 塗り分け
ユーザー mkawa2mkawa2
提出日時 2019-10-26 22:21:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 808 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 83,112 KB
最終ジャッジ日時 2024-09-14 19:15:28
合計ジャッジ時間 15,741 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,076 KB
testcase_01 AC 43 ms
55,680 KB
testcase_02 AC 43 ms
53,892 KB
testcase_03 AC 44 ms
54,136 KB
testcase_04 AC 46 ms
54,360 KB
testcase_05 AC 163 ms
77,424 KB
testcase_06 AC 50 ms
61,988 KB
testcase_07 AC 554 ms
79,832 KB
testcase_08 AC 539 ms
79,468 KB
testcase_09 WA -
testcase_10 AC 55 ms
65,620 KB
testcase_11 AC 56 ms
65,900 KB
testcase_12 AC 828 ms
82,992 KB
testcase_13 AC 53 ms
63,108 KB
testcase_14 AC 60 ms
68,968 KB
testcase_15 AC 44 ms
54,776 KB
testcase_16 AC 43 ms
53,492 KB
testcase_17 AC 42 ms
55,192 KB
testcase_18 AC 82 ms
75,988 KB
testcase_19 AC 80 ms
76,240 KB
testcase_20 AC 727 ms
81,960 KB
testcase_21 AC 607 ms
80,648 KB
testcase_22 AC 615 ms
80,900 KB
testcase_23 AC 55 ms
64,720 KB
testcase_24 AC 580 ms
81,128 KB
testcase_25 AC 65 ms
72,208 KB
testcase_26 WA -
testcase_27 AC 708 ms
82,132 KB
testcase_28 WA -
testcase_29 AC 789 ms
81,512 KB
testcase_30 WA -
testcase_31 AC 827 ms
82,760 KB
testcase_32 AC 270 ms
77,188 KB
testcase_33 AC 817 ms
82,296 KB
testcase_34 WA -
testcase_35 AC 871 ms
82,572 KB
testcase_36 AC 43 ms
53,760 KB
testcase_37 AC 44 ms
54,716 KB
testcase_38 AC 44 ms
53,820 KB
testcase_39 AC 44 ms
54,256 KB
testcase_40 AC 50 ms
62,268 KB
testcase_41 AC 43 ms
53,852 KB
testcase_42 AC 45 ms
54,816 KB
testcase_43 AC 84 ms
76,880 KB
testcase_44 AC 161 ms
77,084 KB
testcase_45 AC 61 ms
69,668 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):
            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 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