結果

問題 No.179 塗り分け
ユーザー NoneNone
提出日時 2021-05-01 09:16:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 835 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-19 15:18:04
合計ジャッジ時間 3,999 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 37 ms
52,352 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 58 ms
71,552 KB
testcase_06 AC 37 ms
52,352 KB
testcase_07 WA -
testcase_08 AC 72 ms
76,168 KB
testcase_09 WA -
testcase_10 AC 49 ms
60,032 KB
testcase_11 AC 46 ms
60,288 KB
testcase_12 AC 86 ms
76,288 KB
testcase_13 AC 38 ms
52,224 KB
testcase_14 AC 41 ms
58,496 KB
testcase_15 AC 36 ms
51,840 KB
testcase_16 AC 38 ms
51,840 KB
testcase_17 AC 37 ms
51,840 KB
testcase_18 AC 50 ms
63,616 KB
testcase_19 AC 47 ms
62,208 KB
testcase_20 AC 77 ms
76,032 KB
testcase_21 AC 86 ms
76,288 KB
testcase_22 AC 114 ms
76,432 KB
testcase_23 AC 45 ms
60,288 KB
testcase_24 AC 78 ms
76,416 KB
testcase_25 AC 45 ms
60,160 KB
testcase_26 WA -
testcase_27 AC 72 ms
76,068 KB
testcase_28 WA -
testcase_29 AC 77 ms
76,160 KB
testcase_30 WA -
testcase_31 AC 74 ms
76,032 KB
testcase_32 AC 68 ms
76,152 KB
testcase_33 AC 79 ms
76,672 KB
testcase_34 WA -
testcase_35 AC 81 ms
75,904 KB
testcase_36 AC 38 ms
51,712 KB
testcase_37 AC 37 ms
51,968 KB
testcase_38 AC 36 ms
51,584 KB
testcase_39 AC 37 ms
51,840 KB
testcase_40 AC 37 ms
52,096 KB
testcase_41 AC 37 ms
51,712 KB
testcase_42 AC 36 ms
51,840 KB
testcase_43 AC 43 ms
60,160 KB
testcase_44 AC 50 ms
68,864 KB
testcase_45 AC 38 ms
52,480 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):
    for w0 in range(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>=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