Submission #6016482


Source Code Expand

H,W = (int(i) for i in input().split())

goal = []
for i in range(H):
    goal.append(input())

canComplete = True

for row in range(W):
    for column in range(H):
        above = row - 1
        bottom = row + 1
        left = column - 1
        right = column + 1
        
        if goal[row][column] == "#":
            if above >= 0 and goal[above][column] == "#":
                continue
            elif bottom < H and goal[bottom][column] == "#":
                continue
            elif left >= 0 and goal[row][left] == "#":
                continue
            elif right < W and goal[row][right] == "#":
                continue
            else:
                canComplete = False
                break

if canComplete:
    print("Yes")
else:
    print("No")

Submission Info

Submission Time
Task C - Grid Repainting 2
User carolinaus
Language Python (3.4.3)
Score 0
Code Size 805 Byte
Status RE
Exec Time 19 ms
Memory 3064 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 3
AC × 7
RE × 6
Set Name Test Cases
Sample sample_01.txt, sample_02.txt, sample_03.txt
All in01.txt, in02.txt, in03.txt, in04.txt, in05.txt, in06.txt, in07.txt, in08.txt, in09.txt, in10.txt, sample_01.txt, sample_02.txt, sample_03.txt
Case Name Status Exec Time Memory
in01.txt RE 19 ms 3064 KB
in02.txt RE 17 ms 3064 KB
in03.txt RE 18 ms 3064 KB
in04.txt RE 17 ms 3064 KB
in05.txt AC 19 ms 3064 KB
in06.txt AC 18 ms 3064 KB
in07.txt RE 19 ms 3060 KB
in08.txt RE 17 ms 3064 KB
in09.txt AC 19 ms 3064 KB
in10.txt AC 19 ms 3064 KB
sample_01.txt AC 17 ms 3064 KB
sample_02.txt AC 17 ms 3064 KB
sample_03.txt AC 17 ms 3064 KB