Submission #1352321


Source Code Expand


import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main {

	public static void main(String[] args) throws IOException {
		BufferedReader input = new BufferedReader(new InputStreamReader(System.in));
		String str = input.readLine();
		String[] hw = str.split(" ");
		int h = Integer.parseInt(hw[0]);
		int w = Integer.parseInt(hw[1]);
		int count = 0;
		for(int i=0; i<h; i++){
			str = input.readLine();
			count += str.length()-str.replace("#", "").length();
		}

		if(h+w-1==count){
			System.out.println("Possible");
		}else{
			System.out.println("Impossible");
			System.out.println(h+w-1);

		}


	}

}

Submission Info

Submission Time
Task A - Shik and Stone
User unirita51
Language Java8 (OpenJDK 1.8.0)
Score 0
Code Size 699 Byte
Status WA
Exec Time 80 ms
Memory 21332 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
AC × 1
WA × 2
AC × 12
WA × 10
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 WA 71 ms 21204 KB
001.txt WA 69 ms 17748 KB
002.txt WA 70 ms 21332 KB
003.txt WA 70 ms 15828 KB
004.txt WA 80 ms 19284 KB
005.txt WA 69 ms 16852 KB
006.txt WA 69 ms 20308 KB
007.txt WA 70 ms 18260 KB
008.txt AC 70 ms 18260 KB
009.txt AC 69 ms 18260 KB
010.txt AC 69 ms 19284 KB
011.txt AC 70 ms 21204 KB
012.txt AC 71 ms 19156 KB
013.txt AC 70 ms 18004 KB
014.txt AC 70 ms 21332 KB
015.txt AC 69 ms 16980 KB
016.txt AC 80 ms 19156 KB
017.txt AC 70 ms 19924 KB
018.txt AC 69 ms 18132 KB
example0.txt AC 69 ms 17620 KB
example1.txt WA 70 ms 17748 KB
example2.txt WA 68 ms 19284 KB