summaryrefslogtreecommitdiff
path: root/781/floors.c
diff options
context:
space:
mode:
Diffstat (limited to '781/floors.c')
-rw-r--r--781/floors.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/781/floors.c b/781/floors.c
new file mode 100644
index 0000000..ab8d257
--- /dev/null
+++ b/781/floors.c
@@ -0,0 +1,25 @@
+#include <stdio.h>
+
+/*
+
+ */
+
+int main(){
+ int n;
+ scanf("%d", &n);
+ while(n--){
+ int i, f, e, a, b, x[100]={0}, y[100]={0};
+ scanf("%d %d %d %d", &f, &e, &a, &b);
+
+ for(i=0; i<e; i++)
+ scanf("%d %d", &x[i], &y[i]);
+
+ int elev, found = 0;
+
+ if(found==1)
+ printf("It is possible to move the furniture.\n");
+ else
+ printf("The furniture cannot be moved.\n");
+ }
+ return 0;
+}