Submission #3595490


Source Code Expand

H,W=gets.chomp.split(" ").map{|n| n.to_i}
M=Array.new(H){Array.new(W)}
0.upto(H-1){|i|
	M[i]=gets.chomp.split('')
}
x = 0
y = 0
while(x != W-1 || y != H-1)
	is_down = (y+1 < H && M[y+1][x] == "#")
	is_right = (x+1 < W && M[y][x+1] == "#")
	if(is_down && is_right)
		puts "Impossible"
		exit(0)
	elsif(! is_down && ! is_right)
		puts "Impossible"
		exit(0)
	elsif(is_down)
		y+=1
	elsif(is_right)
		x+=1
	end
end
puts "Possible"

Submission Info

Submission Time
Task A - Shik and Stone
User kou65536
Language Ruby (2.3.3)
Score 0
Code Size 451 Byte
Status WA
Exec Time 8 ms
Memory 1916 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 3
AC × 20
WA × 2
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 8 ms 1916 KB
001.txt WA 7 ms 1788 KB
002.txt AC 7 ms 1788 KB
003.txt AC 7 ms 1788 KB
004.txt WA 7 ms 1788 KB
005.txt AC 7 ms 1788 KB
006.txt AC 7 ms 1788 KB
007.txt AC 7 ms 1788 KB
008.txt AC 7 ms 1788 KB
009.txt AC 7 ms 1788 KB
010.txt AC 7 ms 1788 KB
011.txt AC 7 ms 1788 KB
012.txt AC 7 ms 1788 KB
013.txt AC 7 ms 1788 KB
014.txt AC 7 ms 1788 KB
015.txt AC 7 ms 1788 KB
016.txt AC 7 ms 1788 KB
017.txt AC 7 ms 1788 KB
018.txt AC 7 ms 1788 KB
example0.txt AC 7 ms 1788 KB
example1.txt AC 7 ms 1788 KB
example2.txt AC 7 ms 1788 KB