Submission #11561928


Source Code Expand

S = input()
d = {}
print(S)

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 351 Byte
Status WA
Exec Time 19 ms
Memory 3188 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 200
Status
WA × 4
WA × 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 WA 17 ms 3060 KB
04.txt WA 17 ms 3060 KB
05.txt WA 17 ms 2940 KB
06.txt WA 17 ms 2940 KB
07.txt WA 19 ms 3188 KB
08.txt WA 17 ms 3060 KB
09.txt WA 17 ms 2940 KB
10.txt WA 17 ms 3060 KB
11.txt WA 17 ms 3060 KB
13.txt WA 17 ms 3060 KB
15.txt WA 17 ms 3060 KB
s1.txt WA 17 ms 2940 KB
s2.txt WA 17 ms 2940 KB
s3.txt WA 17 ms 2940 KB
s4.txt WA 17 ms 3060 KB