Submission #979578


Source Code Expand

import sys

h, w = map(int, input().split())
a = [[i for i in input()] for j in range(h)]

board = [[-1 for i in range(w)] for j in range(h)]
board[0][0] = 0

movecol = [1, 0]
moverow = [0, 1]
count = 0

# #の数を数える
for i in range(w):
    for j in range(h):
        if(a[j][i] == "#"):
            count += 1

def dfs(x, y, n):
    #これ以上進めない
    if(x >= w or y >= h or a[y][x] == "."):
        flag = -1
        return
    #右下についた
    if(x == w-1 and y == h-1):
        if(n == count):
            print("Possible")
            sys.exit()
        else:
            flag = -1

    for i in range(2):
        nextx = x + movecol[i]
        nexty = y + moverow[i]
        dfs(nextx, nexty, n+1)

dfs(0, 0, 1)
print("Impossible")

Submission Info

Submission Time
Task A - Shik and Stone
User ferin_tech
Language Python (3.4.3)
Score 200
Code Size 802 Byte
Status AC
Exec Time 35 ms
Memory 3064 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 200 / 200
Status
AC × 3
AC × 22
Set Name Test Cases
Sample example0.txt, example1.txt, example2.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, example0.txt, example1.txt, example2.txt
Case Name Status Exec Time Memory
000.txt AC 35 ms 3064 KB
001.txt AC 22 ms 3064 KB
002.txt AC 24 ms 3064 KB
003.txt AC 23 ms 3064 KB
004.txt AC 23 ms 3064 KB
005.txt AC 23 ms 3064 KB
006.txt AC 22 ms 3064 KB
007.txt AC 22 ms 3064 KB
008.txt AC 23 ms 3064 KB
009.txt AC 22 ms 3064 KB
010.txt AC 23 ms 3064 KB
011.txt AC 22 ms 3064 KB
012.txt AC 22 ms 3064 KB
013.txt AC 23 ms 3064 KB
014.txt AC 24 ms 3064 KB
015.txt AC 23 ms 3064 KB
016.txt AC 23 ms 3064 KB
017.txt AC 23 ms 3064 KB
018.txt AC 23 ms 3064 KB
example0.txt AC 23 ms 3064 KB
example1.txt AC 23 ms 3064 KB
example2.txt AC 23 ms 3064 KB