답안 #750092

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
750092 2023-05-29T06:42:47 Z Jassar Awesome Arrowland Adventure (eJOI19_adventure) C++17
0 / 100
0 ms 212 KB
#include <bits/stdc++.h>
#define ll long long
#define endl '\n'
#define f first
#define s second
using namespace std;

int main()
{
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    int n,m;
    cin >> n >> m;
    string s[n];
    for (int i=0; n>i; i++)
    {
        cin >> s[i];
    }
    int ans = 0;
    for (int i=0; n-1>i; i++)
    {
        if (s[i][0] == 'X')
        {
            cout << "NO" << endl;
            return 0;
        }
        else if (s[i][0] == 'N')
            ans += 2;
        else if (s[i][0] == 'E')
            ans += 1;
        else if (s[i][0] == 'W')
            ans += 3;
    }
    cout << ans << endl;
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 212 KB Output isn't correct
2 Halted 0 ms 0 KB -