結果

問題 No.179 塗り分け
ユーザー NoneNone
提出日時 2021-05-01 09:21:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 861 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,452 KB
最終ジャッジ日時 2024-07-19 15:28:00
合計ジャッジ時間 4,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,968 KB
testcase_01 AC 31 ms
52,096 KB
testcase_02 AC 33 ms
51,968 KB
testcase_03 AC 32 ms
52,096 KB
testcase_04 AC 33 ms
52,608 KB
testcase_05 AC 66 ms
76,416 KB
testcase_06 AC 48 ms
69,120 KB
testcase_07 WA -
testcase_08 AC 99 ms
76,720 KB
testcase_09 AC 96 ms
76,800 KB
testcase_10 AC 75 ms
76,544 KB
testcase_11 AC 73 ms
76,160 KB
testcase_12 AC 96 ms
76,228 KB
testcase_13 AC 34 ms
53,412 KB
testcase_14 AC 36 ms
59,136 KB
testcase_15 AC 34 ms
51,968 KB
testcase_16 AC 32 ms
52,224 KB
testcase_17 WA -
testcase_18 AC 76 ms
76,452 KB
testcase_19 AC 74 ms
76,240 KB
testcase_20 AC 103 ms
77,056 KB
testcase_21 AC 128 ms
77,452 KB
testcase_22 AC 165 ms
77,080 KB
testcase_23 AC 75 ms
76,288 KB
testcase_24 AC 113 ms
77,016 KB
testcase_25 AC 82 ms
76,288 KB
testcase_26 AC 90 ms
76,416 KB
testcase_27 AC 97 ms
76,808 KB
testcase_28 AC 75 ms
76,272 KB
testcase_29 AC 100 ms
76,608 KB
testcase_30 AC 90 ms
76,672 KB
testcase_31 AC 96 ms
76,800 KB
testcase_32 AC 87 ms
76,544 KB
testcase_33 AC 98 ms
76,748 KB
testcase_34 AC 86 ms
76,764 KB
testcase_35 AC 103 ms
76,800 KB
testcase_36 AC 36 ms
52,352 KB
testcase_37 AC 33 ms
52,224 KB
testcase_38 AC 33 ms
52,096 KB
testcase_39 AC 34 ms
52,352 KB
testcase_40 AC 35 ms
52,096 KB
testcase_41 AC 33 ms
52,224 KB
testcase_42 AC 34 ms
52,224 KB
testcase_43 AC 49 ms
70,528 KB
testcase_44 AC 63 ms
76,004 KB
testcase_45 AC 43 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
grid=[[0]*W for _ in range(H)]
for h in range(H):
    for w,s in enumerate(input().rstrip()):
        grid[h][w]=s

for h0 in range(-H,H):
    for w0 in range(-W,W):
        if (h0,w0)==(0,0):
            continue
        flg=0
        used=[[0]*W for _ in range(H)]
        for h in range(H):
            for w in range(W):
                if grid[h][w]==".":
                    continue
                if grid[h][w]=="#":
                    if used[h][w]==1:
                        continue
                    if not (h+h0<0 or w+w0<0 or h+h0>=H or w+w0>=W or grid[h+h0][w+w0]=="."):
                        used[h+h0][w+w0]=1
                        continue
                flg=1
                break
            if flg==1:
                break
        if flg==0:
            print("YES")
            exit()
print("NO")

0