結果

問題 No.179 塗り分け
ユーザー caleicalei
提出日時 2020-01-01 19:25:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,334 ms / 3,000 ms
コード長 693 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 81,180 KB
最終ジャッジ日時 2024-07-23 15:11:10
合計ジャッジ時間 23,920 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,828 KB
testcase_01 AC 50 ms
62,992 KB
testcase_02 AC 57 ms
65,440 KB
testcase_03 AC 48 ms
63,092 KB
testcase_04 AC 63 ms
68,180 KB
testcase_05 AC 199 ms
77,408 KB
testcase_06 AC 124 ms
77,408 KB
testcase_07 AC 1,334 ms
79,772 KB
testcase_08 AC 1,244 ms
80,924 KB
testcase_09 AC 89 ms
76,400 KB
testcase_10 AC 562 ms
79,588 KB
testcase_11 AC 497 ms
78,552 KB
testcase_12 AC 922 ms
79,884 KB
testcase_13 AC 78 ms
76,724 KB
testcase_14 AC 74 ms
76,244 KB
testcase_15 AC 42 ms
53,816 KB
testcase_16 AC 43 ms
54,196 KB
testcase_17 AC 42 ms
54,448 KB
testcase_18 AC 619 ms
79,348 KB
testcase_19 AC 550 ms
78,608 KB
testcase_20 AC 1,033 ms
81,180 KB
testcase_21 AC 1,159 ms
80,004 KB
testcase_22 AC 1,204 ms
79,788 KB
testcase_23 AC 640 ms
78,504 KB
testcase_24 AC 1,215 ms
80,356 KB
testcase_25 AC 874 ms
78,868 KB
testcase_26 AC 419 ms
77,976 KB
testcase_27 AC 1,132 ms
79,564 KB
testcase_28 AC 390 ms
78,172 KB
testcase_29 AC 1,128 ms
80,828 KB
testcase_30 AC 487 ms
78,260 KB
testcase_31 AC 1,110 ms
80,380 KB
testcase_32 AC 799 ms
80,060 KB
testcase_33 AC 1,118 ms
80,796 KB
testcase_34 AC 569 ms
78,564 KB
testcase_35 AC 1,100 ms
81,124 KB
testcase_36 AC 46 ms
56,876 KB
testcase_37 AC 49 ms
61,292 KB
testcase_38 AC 50 ms
62,148 KB
testcase_39 AC 50 ms
61,812 KB
testcase_40 AC 57 ms
65,196 KB
testcase_41 AC 49 ms
61,896 KB
testcase_42 AC 53 ms
64,224 KB
testcase_43 AC 117 ms
77,156 KB
testcase_44 AC 217 ms
77,328 KB
testcase_45 AC 83 ms
76,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 2020/01/01
# 解答かんにんぐ

from copy import deepcopy

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


def check(x,y):
    g=deepcopy(s)
    flag=False
    for i in range(h):
        for j in range(w):
            if g[i][j] in ['.','R','B']:continue
            if i+y<0 or i+y>=h or j+x<0 or j+x>=w:return False
            if g[i][j]==g[i+y][j+x]=='#':
                flag=True
                g[i][j]='R'
                g[i+y][j+x]='B'
            else:return False
    return flag


for x in range(-w,w+1):
    for y in range(-h,h+1):
        if x==y==0:continue
        res=check(x,y)
        if res:
            print('YES')
            exit()
print('NO')
0