結果

問題 No.179 塗り分け
ユーザー KazunKazun
提出日時 2020-11-18 02:24:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 603 ms / 3,000 ms
コード長 599 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-07-23 15:22:38
合計ジャッジ時間 13,209 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,728 KB
testcase_01 AC 38 ms
53,056 KB
testcase_02 AC 47 ms
61,952 KB
testcase_03 AC 38 ms
53,072 KB
testcase_04 AC 55 ms
66,372 KB
testcase_05 AC 135 ms
76,476 KB
testcase_06 AC 126 ms
77,268 KB
testcase_07 AC 240 ms
76,900 KB
testcase_08 AC 257 ms
77,096 KB
testcase_09 AC 259 ms
77,240 KB
testcase_10 AC 446 ms
77,340 KB
testcase_11 AC 381 ms
77,404 KB
testcase_12 AC 355 ms
77,028 KB
testcase_13 AC 52 ms
64,768 KB
testcase_14 AC 49 ms
64,672 KB
testcase_15 AC 37 ms
52,868 KB
testcase_16 AC 37 ms
53,452 KB
testcase_17 AC 37 ms
52,632 KB
testcase_18 AC 424 ms
77,576 KB
testcase_19 AC 425 ms
77,796 KB
testcase_20 AC 391 ms
77,284 KB
testcase_21 AC 323 ms
77,544 KB
testcase_22 AC 467 ms
77,604 KB
testcase_23 AC 480 ms
77,828 KB
testcase_24 AC 305 ms
77,216 KB
testcase_25 AC 336 ms
77,452 KB
testcase_26 AC 389 ms
77,500 KB
testcase_27 AC 435 ms
77,100 KB
testcase_28 AC 527 ms
77,680 KB
testcase_29 AC 536 ms
77,720 KB
testcase_30 AC 546 ms
77,904 KB
testcase_31 AC 603 ms
77,308 KB
testcase_32 AC 528 ms
77,920 KB
testcase_33 AC 548 ms
77,308 KB
testcase_34 AC 583 ms
78,208 KB
testcase_35 AC 557 ms
77,196 KB
testcase_36 AC 39 ms
52,652 KB
testcase_37 AC 40 ms
53,508 KB
testcase_38 AC 40 ms
52,728 KB
testcase_39 AC 45 ms
60,668 KB
testcase_40 AC 48 ms
61,356 KB
testcase_41 AC 41 ms
52,588 KB
testcase_42 AC 58 ms
66,008 KB
testcase_43 AC 103 ms
76,372 KB
testcase_44 AC 158 ms
76,504 KB
testcase_45 AC 85 ms
76,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
S=[input() for _ in range(H)]

Flag=0
for y in range(0,H+1):
    for x in range(-(W-1),W):
        if x==y==0:
            continue

        T=[[int(S[y][x]=="#") for x in range(W)] for y in range(H)]
        G=1
        K=0

        for b in range(H):
            for a in range(W):
                if T[b][a]:
                    if 0<=b+y<H and 0<=a+x<W and T[b+y][a+x]:
                        T[b][a]=T[b+y][a+x]=0
                        K=1
                    else:
                        G=0
        Flag|=G&K

if Flag:
    print("YES")
else:
    print("NO")

0