Submission #3775278


Source Code Expand

N,M=map(int,input().split())
flag = False
v=[]
x=[]
y=[]
for i in range(M):
    a,b=map(int,input().split())
    if a==1:
        x.append(b)
    if b==N:
        y.append(a)
for i in x:
    for j in y:
        if i==j:
            flag=True
            break
    if flag:
        print("POSSIBLE")
        break
else:
    print("IMPOSSIBLE")

Submission Info

Submission Time
Task C - Cat Snuke and a Voyage
User moro
Language Python (3.4.3)
Score 0
Code Size 362 Byte
Status TLE
Exec Time 2104 ms
Memory 10976 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 300
Status
AC × 4
AC × 9
TLE × 2
Set Name Test Cases
Sample example0, example1, example2, example3
All example0, example1, example2, example3, last0, last1, many0, many1, rand0, rand1, rand2
Case Name Status Exec Time Memory
example0 AC 18 ms 3064 KB
example1 AC 18 ms 3064 KB
example2 AC 18 ms 3064 KB
example3 AC 18 ms 3064 KB
last0 AC 545 ms 3060 KB
last1 AC 565 ms 3064 KB
many0 TLE 2104 ms 10976 KB
many1 TLE 2104 ms 10968 KB
rand0 AC 370 ms 3060 KB
rand1 AC 531 ms 3064 KB
rand2 AC 306 ms 3060 KB