Submission #979085


Source Code Expand

using System;
using System.Collections.Generic;
using System.Collections;
using System.Linq;
using System.Numerics;




namespace contest
{

    class contest
    {


        static void Main(string[] args)
        {


            //int n = int.Parse(Console.ReadLine());
            //var input = Console.ReadLine().Split().Select(int.Parse).ToArray();

            //var num = Console.ReadLine().Split().Select(int.Parse).ToArray();


            var num = Console.ReadLine().Split().Select(int.Parse).ToArray();
            int h = num[0];
            int w = num[1];
            var map = new string[h];
            int memo = 0;
            bool ok = true;
            for(int i =0; i< h; i++)
            {
                map[i] = Console.ReadLine();
                int tmp =map[i].IndexOf('#');
                if (tmp < 0) continue;
                else if (tmp < memo)
                {
                    ok = false;
                }
                else
                {
                    memo = map[i].LastIndexOf('#');
                }
            }




            if(ok)Console.WriteLine("Possible");
            else Console.WriteLine("Impossible"); 





       


        }

       

    }


}

Submission Info

Submission Time
Task A - Shik and Stone
User nectar
Language C# (Mono 4.6.2.0)
Score 200
Code Size 1288 Byte
Status AC
Exec Time 25 ms
Memory 3156 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 25 ms 3156 KB
001.txt AC 22 ms 2776 KB
002.txt AC 21 ms 2776 KB
003.txt AC 21 ms 2776 KB
004.txt AC 21 ms 2776 KB
005.txt AC 21 ms 2776 KB
006.txt AC 21 ms 2776 KB
007.txt AC 21 ms 2776 KB
008.txt AC 21 ms 2776 KB
009.txt AC 21 ms 2776 KB
010.txt AC 21 ms 2776 KB
011.txt AC 21 ms 2776 KB
012.txt AC 21 ms 2776 KB
013.txt AC 21 ms 2776 KB
014.txt AC 21 ms 2776 KB
015.txt AC 21 ms 2776 KB
016.txt AC 21 ms 2776 KB
017.txt AC 22 ms 2776 KB
018.txt AC 21 ms 2776 KB
example0.txt AC 21 ms 2776 KB
example1.txt AC 21 ms 2776 KB
example2.txt AC 21 ms 2776 KB