답안 #750195

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
750195 2023-05-29T07:40:31 Z MrM7md Awesome Arrowland Adventure (eJOI19_adventure) C++17
0 / 100
1 ms 324 KB
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define endl '\n'
#define F first
#define S second
#define pb push_back
#define all(a) a.begin(),a.end()
const int N=1e6+500;
const int off=(1<<18);
const int MOD = 1e9+7;


signed main(){
   ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
   int n,m;
   cin >> n >> m;
   int tot=0;
   for(int i=0;i<n;i++){
      char ch;cin >> ch;
      if(ch=='N')tot++;
      if(ch=='W')tot+=2;
      if(ch=='S')tot+=3;
      if(ch=='X'&&i!=n-1)tot-=INT_MAX;
   }
   if(tot<0)tot=-1;
   cout<<tot;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 324 KB Output is correct
2 Incorrect 1 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -