結果

問題 No.1806 Rotating Golem
ユーザー futamegawafutamegawa
提出日時 2023-08-12 19:12:25
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 1,711 ms
コンパイル使用メモリ 174,868 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-20 09:37:19
合計ジャッジ時間 2,472 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 13
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using ll = long long;
using llu = long long unsigned;

using namespace std;

int main() {
    char A, B;
    cin >> A >> B;

    map<char, int> data;
    data['E'] = 0;
    data['S'] = 1;
    data['W'] = 2;
    data['N'] = 3;

    int result = data[B] - data[A] + 4;
    result %= 4;
    cout << result << endl; return 0;
}
0