Submission #844493


Source Code Expand

#include <bits/stdc++.h>
#define sz(x) (int((x).size()))
#define pb push_back
#define eb emplace_back
#define all(x) (x).begin(), (x).end()
template<typename T> bool domax(T &a, T b) { return (b > a ? (a = b, true) : false); }
template<typename T> bool domin(T &a, T b) { return (b < a ? (a = b, true) : false); }
typedef long long ll;

int n;
char s[1005];
bool k[256];

int main() {
    scanf("%s", s);
    n = strlen(s);
    for (int i = 0; i < n; i++) {
        k[s[i]] = true;
    }
    printf("%s\n", ((k['N']==k['S']) && (k['E'] == k['W'])) ? "YES" : "NO");
}

Submission Info

Submission Time
Task A - Wanna go back home
User GendelPiekel
Language C++14 (GCC 5.4.1)
Score 0
Code Size 590 Byte
Status WA
Exec Time 4 ms
Memory 256 KB

Compile Error

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

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 4 ms 256 KB
04.txt WA 4 ms 256 KB
05.txt WA 4 ms 256 KB
06.txt WA 4 ms 256 KB
07.txt WA 4 ms 256 KB
08.txt WA 4 ms 256 KB
09.txt WA 4 ms 256 KB
10.txt WA 4 ms 256 KB
11.txt WA 4 ms 256 KB
13.txt WA 4 ms 256 KB
15.txt WA 4 ms 256 KB
s1.txt WA 4 ms 256 KB
s2.txt WA 4 ms 256 KB
s3.txt WA 4 ms 256 KB
s4.txt WA 4 ms 256 KB