Submission #979368


Source Code Expand

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<math.h>

#define sl(x) scanf("%ld", &x)
#define ss(x) scanf("%s", x)
#define pl(x) printf("%ld\n", x)

#define INF 100000000000
#define M 1000000007

#define min(a,b) (((a)<(b))?(a):(b))
#define max(a,b) (((a)>(b))?(a):(b))

long H, W;
long A[11][11] = {0};

int main() {
	long i, j;
	long ci, cj;
	long sum = 0;
	long cnt = 1;
	char buf[10];
	
	sl(H); sl(W);
	for(i=1;i<=H;i++) {
		ss(buf);
		for(j=1;j<=W;j++) {
			if(buf[j-1] == '#')  {
				A[i][j] = 1;
				sum++;
			} else {
				A[i][j] = 0;
			}
		}
	}
	
	ci = 0; cj = 0;
	i = 1; j = 1;
	while(1) {
		if(A[i+1][j]) {
			ci = i;
			i++;
			cnt++;
		}
		if(A[i][j+1]) {
			cj = j;
			j++;
			cnt++;
		}
		if(i == H && j == W) {
			if(cnt == sum) printf("Possible\n");
			else printf("Impossible\n");
			return 0;
		}
		if(i == ci && j == cj) break;
		ci = i; cj = j;
	}
	
	printf("Impossible\n");
	
	return 0;
}

Submission Info

Submission Time
Task A - Shik and Stone
User Lhaplus
Language C (GCC 5.4.1)
Score 200
Code Size 993 Byte
Status AC
Exec Time 1 ms
Memory 128 KB

Compile Error

./Main.c: In function ‘main’:
./Main.c:6:15: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
 #define sl(x) scanf("%ld", &x)
               ^
./Main.c:26:2: note: in expansion of macro ‘sl’
  sl(H); sl(W);
  ^
./Main.c:6:15: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
 #define sl(x) scanf("%ld", &x)
               ^
./Main.c:26:9: note: in expansion of macro ‘sl’
  sl(H); sl(W);
         ^
./Main.c:7:15: warning: ignoring return value of ‘scanf’, declared with attribute warn_unused_result [-Wunused-result]
 #define ss(x) scanf("%s", x)
               ^
./Main.c:28:3: note: in expansion of macro ‘ss’
   ss(buf);
   ^

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 1 ms 128 KB
001.txt AC 1 ms 128 KB
002.txt AC 1 ms 128 KB
003.txt AC 1 ms 128 KB
004.txt AC 1 ms 128 KB
005.txt AC 1 ms 128 KB
006.txt AC 1 ms 128 KB
007.txt AC 1 ms 128 KB
008.txt AC 1 ms 128 KB
009.txt AC 1 ms 128 KB
010.txt AC 1 ms 128 KB
011.txt AC 1 ms 128 KB
012.txt AC 1 ms 128 KB
013.txt AC 1 ms 128 KB
014.txt AC 1 ms 128 KB
015.txt AC 1 ms 128 KB
016.txt AC 1 ms 128 KB
017.txt AC 1 ms 128 KB
018.txt AC 1 ms 128 KB
example0.txt AC 1 ms 128 KB
example1.txt AC 1 ms 128 KB
example2.txt AC 1 ms 128 KB