제출 #750195

#제출 시각아이디문제언어결과실행 시간메모리
750195MrM7mdAwesome Arrowland Adventure (eJOI19_adventure)C++17
0 / 100
1 ms324 KiB
#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; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...