結果

問題 No.179 塗り分け
ユーザー mkawa2mkawa2
提出日時 2019-10-26 22:25:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 813 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 88,892 KB
最終ジャッジ日時 2024-09-14 19:30:15
合計ジャッジ時間 20,884 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,820 KB
testcase_01 AC 45 ms
54,084 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 WA -
testcase_04 AC 46 ms
54,316 KB
testcase_05 AC 243 ms
77,636 KB
testcase_06 AC 45 ms
54,088 KB
testcase_07 AC 1,027 ms
82,604 KB
testcase_08 AC 968 ms
82,484 KB
testcase_09 AC 978 ms
82,400 KB
testcase_10 AC 56 ms
63,760 KB
testcase_11 AC 56 ms
63,764 KB
testcase_12 WA -
testcase_13 AC 61 ms
67,328 KB
testcase_14 AC 58 ms
68,064 KB
testcase_15 AC 44 ms
54,520 KB
testcase_16 AC 43 ms
53,836 KB
testcase_17 AC 43 ms
53,624 KB
testcase_18 AC 101 ms
76,548 KB
testcase_19 AC 97 ms
76,096 KB
testcase_20 AC 1,370 ms
85,536 KB
testcase_21 AC 1,132 ms
84,580 KB
testcase_22 AC 1,108 ms
83,756 KB
testcase_23 AC 56 ms
64,400 KB
testcase_24 AC 1,076 ms
84,212 KB
testcase_25 AC 66 ms
72,156 KB
testcase_26 AC 261 ms
77,508 KB
testcase_27 AC 1,318 ms
85,900 KB
testcase_28 AC 149 ms
76,752 KB
testcase_29 AC 1,483 ms
86,992 KB
testcase_30 AC 714 ms
81,144 KB
testcase_31 AC 1,546 ms
87,364 KB
testcase_32 AC 488 ms
79,180 KB
testcase_33 AC 1,540 ms
86,780 KB
testcase_34 AC 372 ms
77,840 KB
testcase_35 AC 1,636 ms
88,892 KB
testcase_36 AC 45 ms
53,752 KB
testcase_37 AC 46 ms
54,452 KB
testcase_38 AC 45 ms
54,652 KB
testcase_39 AC 45 ms
55,124 KB
testcase_40 AC 52 ms
62,292 KB
testcase_41 AC 45 ms
55,140 KB
testcase_42 AC 52 ms
62,164 KB
testcase_43 AC 102 ms
76,796 KB
testcase_44 AC 260 ms
77,656 KB
testcase_45 AC 76 ms
75,860 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 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