Submission #6110929


Source Code Expand

H, W = map(int, input().split())

line_list = []

for i in range(H):
    line = input()
    line_list.append(line)

flag = True
for i in range(len(line_list)):
    for j in range(len(line_list[i])):
        if flag == False:
            break
        if line_list[i][j] == "#":
            if i == 0:
                if j == 0:
                    if "#" not in [line_list[i + 1][j], line_list[i][j + 1]]:
                        flag = False
                elif j == W - 1:
                    if "#" not in [line_list[i + 1][j], line_list[i][j - 1]]:
                        flag = False
                else:
                    if "#" not in [line_list[i + 1][j], line_list[i][j - 1], line_list[i][j + 1]]:
                        flag = False
            elif i == H - 1:
                if j == 0:
                    if "#" not in [line_list[i - 1][j], line_list[i][j + 1]]:
                        flag = False
                elif j == W - 1:
                    if "#" not in [line_list[i - 1][j], line_list[i][j - 1]]:
                        flag = False
                else:
                    if "#" not in [line_list[i - 1][j], line_list[i][j - 1], line_list[i][j + 1]]:
                        flag = False
            else:
                if j == 0:
                    if "#" not in [line_list[i - 1][j], line_list[i + 1][j], line_list[i][j + 1]]:
                        flag = False
                elif j == W - 1:
                    if "#" not in [line_list[i - 1][j], line_list[i + 1][j], line_list[i][j - 1]]:
                        flag = False
                else:
                    if "#" not in [line_list[i - 1][j], line_list[i + 1][j], line_list[i][j - 1], line_list[i][j + 1]]:
                        flag = False

print("Yes" if flag else "No")

Submission Info

Submission Time
Task C - Grid Repainting 2
User shupopo
Language Python (3.4.3)
Score 300
Code Size 1833 Byte
Status AC
Exec Time 20 ms
Memory 3188 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 300 / 300
Status
AC × 3
AC × 13
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 AC 20 ms 3188 KB
in02.txt AC 20 ms 3188 KB
in03.txt AC 18 ms 3188 KB
in04.txt AC 18 ms 3188 KB
in05.txt AC 19 ms 3188 KB
in06.txt AC 19 ms 3188 KB
in07.txt AC 18 ms 3188 KB
in08.txt AC 19 ms 3064 KB
in09.txt AC 19 ms 3188 KB
in10.txt AC 19 ms 3188 KB
sample_01.txt AC 18 ms 3188 KB
sample_02.txt AC 18 ms 3188 KB
sample_03.txt AC 17 ms 3188 KB