結果

問題 No.179 塗り分け
ユーザー nohakai3nohakai3
提出日時 2022-11-04 20:37:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 575 ms / 3,000 ms
コード長 599 bytes
コンパイル時間 727 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,876 KB
最終ジャッジ日時 2024-07-18 18:27:42
合計ジャッジ時間 12,873 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 38 ms
52,608 KB
testcase_02 AC 53 ms
61,312 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 58 ms
65,536 KB
testcase_05 AC 137 ms
76,780 KB
testcase_06 AC 135 ms
77,184 KB
testcase_07 AC 230 ms
76,928 KB
testcase_08 AC 250 ms
77,056 KB
testcase_09 AC 253 ms
77,440 KB
testcase_10 AC 430 ms
77,272 KB
testcase_11 AC 367 ms
77,356 KB
testcase_12 AC 357 ms
77,332 KB
testcase_13 AC 56 ms
64,128 KB
testcase_14 AC 52 ms
63,488 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 38 ms
51,840 KB
testcase_17 AC 38 ms
51,840 KB
testcase_18 AC 418 ms
77,500 KB
testcase_19 AC 427 ms
77,592 KB
testcase_20 AC 383 ms
77,124 KB
testcase_21 AC 330 ms
77,344 KB
testcase_22 AC 458 ms
77,284 KB
testcase_23 AC 474 ms
77,376 KB
testcase_24 AC 304 ms
77,292 KB
testcase_25 AC 330 ms
77,632 KB
testcase_26 AC 380 ms
77,680 KB
testcase_27 AC 427 ms
77,144 KB
testcase_28 AC 515 ms
77,620 KB
testcase_29 AC 531 ms
77,760 KB
testcase_30 AC 524 ms
77,788 KB
testcase_31 AC 575 ms
77,496 KB
testcase_32 AC 499 ms
77,868 KB
testcase_33 AC 524 ms
77,512 KB
testcase_34 AC 561 ms
77,876 KB
testcase_35 AC 540 ms
77,376 KB
testcase_36 AC 38 ms
52,224 KB
testcase_37 AC 38 ms
52,480 KB
testcase_38 AC 38 ms
52,864 KB
testcase_39 AC 42 ms
58,880 KB
testcase_40 AC 49 ms
61,184 KB
testcase_41 AC 36 ms
52,224 KB
testcase_42 AC 64 ms
64,896 KB
testcase_43 AC 105 ms
76,424 KB
testcase_44 AC 164 ms
76,688 KB
testcase_45 AC 89 ms
76,416 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