結果
問題 | No.1806 Rotating Golem |
ユーザー | harshith akkapelli |
提出日時 | 2022-01-14 22:23:16 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 453 bytes |
コンパイル時間 | 1,761 ms |
コンパイル使用メモリ | 177,116 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-20 11:48:00 |
合計ジャッジ時間 | 2,709 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 13 |
ソースコード
#include <bits/stdc++.h> #define f first #define s second using namespace std; typedef long long int ll; void routine(){ char A,B; cin >> A >> B; map<char,ll> m; m['N'] = 0; m['E'] = 1; m['S'] = 2; m['W'] = 3; if(A == B){ cout << 0; return; } if(m[A] < m[B]){ cout << m[B] - m[A]; return; } cout << 4 - m[A] + m[B]; return; } int main(){ ios::sync_with_stdio(0); cin.tie(0); ll t = 1; while(t--){ routine(); } return 0; }