Submission #846384
Source Code Expand
#include<iostream>
#include<vector>
#include<string>
#include<math.h>
using namespace std;
int main() {
string s;
int x = 0;
int y = 0;
cin >> s;
for (int i = 0; i < s.length(); i++)
{
if (s[i] == 'N')
y++;
else if (s[i] == 'W')
x++;
else if (s[i] == 'S')
y--;
else if (s[i] == 'E')
x--;
}
if (x == 0 && y == 0) {
cout << "Yes" << endl;
}else{
cout << "No" << endl;
}
}
Submission Info
| Submission Time | |
|---|---|
| Task | A - Wanna go back home |
| User | cappepsi |
| Language | C++14 (GCC 5.4.1) |
| Score | 0 |
| Code Size | 439 Byte |
| Status | WA |
| Exec Time | 6 ms |
| Memory | 256 KiB |
Judge Result
| Set Name | Sample | All | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
| Score / Max Score | 0 / 0 | 0 / 200 | ||||||||
| Status |
|
|
| 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 | AC | 4 ms | 256 KiB |
| 04.txt | AC | 4 ms | 256 KiB |
| 05.txt | AC | 4 ms | 256 KiB |
| 06.txt | AC | 4 ms | 256 KiB |
| 07.txt | AC | 4 ms | 256 KiB |
| 08.txt | AC | 4 ms | 256 KiB |
| 09.txt | AC | 6 ms | 256 KiB |
| 10.txt | AC | 4 ms | 256 KiB |
| 11.txt | WA | 4 ms | 256 KiB |
| 13.txt | AC | 4 ms | 256 KiB |
| 15.txt | AC | 4 ms | 256 KiB |
| s1.txt | AC | 4 ms | 256 KiB |
| s2.txt | WA | 4 ms | 256 KiB |
| s3.txt | AC | 4 ms | 256 KiB |
| s4.txt | AC | 4 ms | 256 KiB |