Submission #844478


Source Code Expand

#include <cstdlib>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <queue>
#include <cmath>
#include <stack>
#include <map>
#include <set>
#include <deque>
#include <cstring>
#include <functional>
#include <climits>
#include <list>
#include <ctime>
#include <complex>
#include <ext/rope>

#define F1(x,y,z) for(int x=y;x<z;x++)
#define F2(x,y,z) for(int x=y;x<=z;x++)
#define F3(x,y,z) for(int x=y;x>z;x--)
#define F4(x,y,z) for(int x=y;x>=z;x--)
#define mp make_pair
#define pb push_back
#define LL long long
#define co complex<double>
#define fi first
#define se second

#define MAX 100005
#define AMAX 1500
#define MOD 1000000007

#define f(c,d) ((1<<(c))*(d))

using namespace std;
using namespace __gnu_cxx;

int i;
char x[1005];
bool y[4];

int main(){
	scanf("%s",x);
	while(x[i]){
		if(x[i]=='N')y[0]=1;
		if(x[i]=='S')y[1]=1;
		if(x[i]=='E')y[2]=1;
		if(x[i]=='W')y[3]=1;
		i++;
	}
	printf(((y[0]^y[1])||(y[2]^y[3]))?"No\n":"Yes\n");
	#ifdef LOCAL_PROJECT
    system("pause");
    #endif
    return 0;
}

Submission Info

Submission Time
Task A - Wanna go back home
User nhho
Language C++14 (GCC 5.4.1)
Score 200
Code Size 1088 Byte
Status AC
Exec Time 2 ms
Memory 128 KB

Compile Error

./Main.cpp: In function ‘int main()’:
./Main.cpp:44:15: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
  scanf("%s",x);
               ^

Judge Result

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