Submission #11561661


Source Code Expand

S = input()
d = {}
for s in S:
  d[s] = True
  
if 'N' in d:
  if 'S' not in d:
    print 'No'
    exit()
    
if 'S' in d:
  if 'N' not in d:
    print 'No'
    exit()

if 'E' in d:
  if 'W' not in d:
    print 'No'
    exit()
    
if 'W' in d:
  if 'E' not in d:
    print 'No'
    exit()  
    
print 'Yes'

Submission Info

Submission Time
Task A - Wanna go back home
User burita083
Language Python (3.4.3)
Score 0
Code Size 334 Byte
Status RE
Exec Time 17 ms
Memory 3064 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
RE × 4
RE × 15
Set Name Test Cases
Sample s1.txt, s2.txt, s3.txt, s4.txt
All 01.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 13.txt, 15.txt, s1.txt, s2.txt, s3.txt, s4.txt
Case Name Status Exec Time Memory
01.txt RE 17 ms 2940 KB
04.txt RE 17 ms 2940 KB
05.txt RE 17 ms 2940 KB
06.txt RE 17 ms 2940 KB
07.txt RE 17 ms 2940 KB
08.txt RE 17 ms 2940 KB
09.txt RE 17 ms 3064 KB
10.txt RE 17 ms 2940 KB
11.txt RE 17 ms 2940 KB
13.txt RE 17 ms 2940 KB
15.txt RE 17 ms 2940 KB
s1.txt RE 17 ms 2940 KB
s2.txt RE 17 ms 2940 KB
s3.txt RE 17 ms 2940 KB
s4.txt RE 17 ms 2940 KB